17 lines
307 B
Go
17 lines
307 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/Delta456/box-cli-maker/v2"
|
|
)
|
|
|
|
func main() {
|
|
Box := box.New(box.Config{Px: 2, Py: 5, Type: "Single"})
|
|
Box.Print("System Setup", "Configure and install your predefined system")
|
|
if err := rootCmd.Execute(); err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
}
|