mirror of
https://github.com/opbnq-q/nto-cli.git
synced 2025-12-07 01:50:34 +07:00
9 lines
146 B
Go
9 lines
146 B
Go
package input
|
|
|
|
import "fmt"
|
|
|
|
func Input() (string, string) {
|
|
var structName, path string
|
|
fmt.Scan(&structName, &path)
|
|
return structName, path
|
|
} |