github.com/adevinta/maiao@v0.0.0-20240318133227-b6f9656b5e07/cmd/maiao/main.go (about)

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  	"os"
     6  
     7  	"github.com/adevinta/maiao/pkg/cmd"
     8  )
     9  
    10  func main() {
    11  	if err := cmd.NewCommand().Execute(); err != nil {
    12  		fmt.Println(err.Error())
    13  		os.Exit(1)
    14  	}
    15  }