mirror of
https://github.com/mustbeperfect/definitive-opensource.git
synced 2026-04-18 14:54:09 +02:00
Populated CLI with initial GO
This commit is contained in:
12
cli/main.go
12
cli/main.go
@@ -1,5 +1,15 @@
|
||||
package main
|
||||
|
||||
func main() {
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"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