Initial Commit

This commit is contained in:
2024-05-15 13:42:38 -05:00
parent 1be02c96ff
commit 9aa99fdb91
14 changed files with 799 additions and 232 deletions

12
cli/cli.go Normal file
View File

@@ -0,0 +1,12 @@
/*
Copyright © 2024 Brian Buller <brian@bullercodeworks.com>
*/
package cli
type Program struct {
debug bool
}
func (p *Program) Initialize() error {
return nil
}