Initial Commit

This commit is contained in:
2023-03-31 09:51:41 -05:00
commit 96c2338300
11 changed files with 797 additions and 0 deletions

9
cli/cli.go Normal file
View File

@@ -0,0 +1,9 @@
package cli
type Program struct {
debug bool
}
func (p *Program) Initialize() error {
return nil
}