mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-03-22 22:00:13 +00:00
17 lines
365 B
Go
17 lines
365 B
Go
package cmd
|
|
|
|
import (
|
|
_ "github.com/thunderbrewhq/binana/go/app/cmd/lint"
|
|
_ "github.com/thunderbrewhq/binana/go/app/cmd/make"
|
|
_ "github.com/thunderbrewhq/binana/go/app/cmd/tidy"
|
|
|
|
"github.com/thunderbrewhq/binana/go/app"
|
|
"github.com/thunderbrewhq/binana/go/app/cmd/root"
|
|
)
|
|
|
|
func Execute() {
|
|
err := root.RootCmd.Execute()
|
|
if err != nil {
|
|
app.Fatal(err)
|
|
}
|
|
}
|