mirror of
https://github.com/mustbeperfect/definitive-opensource.git
synced 2026-04-17 23:54:03 +02:00
16 lines
176 B
Go
16 lines
176 B
Go
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)
|
|
}
|
|
}
|