meta parsing

This commit is contained in:
2025-02-12 17:00:09 +07:00
parent 653c667e57
commit 5380bd109a
8 changed files with 32 additions and 5 deletions

View File

@@ -3,6 +3,7 @@ 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