This commit is contained in:
Grigoryev Ilya Alekseevich
2026-03-31 23:22:50 +05:00
parent 9df60aa41a
commit b8997e1ac9
4 changed files with 253 additions and 179 deletions

View File

@@ -1 +1,13 @@
package main
import (
"fmt"
"mftecmd/internal/cmd"
)
func main() {
program := cmd.NewCLI()
cmd := program.Run()
fmt.Printf("%+v\n", cmd)
}