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

15
apps/cli/main.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import (
"fmt"
"os"
"github.com/definitive-opensource/cli"
)
func main() {
if err := cli.Run(); err != nil {
fmt.Println("Error:", err)
os.Exit(1)
}
}