mirror of
https://github.com/mustbeperfect/definitive-opensource.git
synced 2026-04-19 08:33:25 +02:00
Moved cli and web directory into app dir
This commit is contained in:
15
apps/cli/main.go
Normal file
15
apps/cli/main.go
Normal 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)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user