Moved cli and web directory into app dir

This commit is contained in:
Lucas
2026-01-02 12:27:03 -08:00
parent c9f5feb9cb
commit 3fba4355fe
12 changed files with 0 additions and 0 deletions

21
apps/cli/cli.go Normal file
View File

@@ -0,0 +1,21 @@
package cli
import "fmt"
func Run() error {
fmt.Println("Definitive Open Source CLI")
fmt.Println("1) Add new project")
var choice int
fmt.Print("Select an option: ")
fmt.Scanln(&choice)
switch choice {
case 1:
return AddProject()
default:
fmt.Println("Invalid option")
}
return nil
}