mirror of
https://github.com/opbnq-q/nto-cli.git
synced 2025-12-07 02:50:35 +07:00
10 lines
207 B
Go
10 lines
207 B
Go
package input
|
|
|
|
import "fmt"
|
|
|
|
func Input() (string, string) {
|
|
fmt.Print("struct name, path to file (including struct): ")
|
|
var structName, path string
|
|
fmt.Scan(&structName, &path)
|
|
return structName, path
|
|
} |