feat: getting struct fields

This commit is contained in:
2025-02-11 18:51:25 +07:00
commit 653c667e57
9 changed files with 139 additions and 0 deletions

9
cmd/input.go Normal file
View File

@@ -0,0 +1,9 @@
package input
import "fmt"
func Input() (string, string) {
var structName, path string
fmt.Scan(&structName, &path)
return structName, path
}