binana/go/app/cmd/execute.go
superp00t cbb42eb953 feat(bna): implement fix-labels command
The fix-labels command will fix a symbol file by automatically renaming
labels matching a certain regex, and looking for the captured parameter
in a "fixlist" i.e. a newline delimited list of OG names.
2026-04-29 03:13:52 -04:00

22 lines
658 B
Go

package cmd
import (
_ "github.com/thunderbrewhq/binana/go/app/cmd/add_symbol"
_ "github.com/thunderbrewhq/binana/go/app/cmd/fix_labels"
_ "github.com/thunderbrewhq/binana/go/app/cmd/lint"
_ "github.com/thunderbrewhq/binana/go/app/cmd/make"
_ "github.com/thunderbrewhq/binana/go/app/cmd/make_samples"
_ "github.com/thunderbrewhq/binana/go/app/cmd/make_tokens"
_ "github.com/thunderbrewhq/binana/go/app/cmd/query"
"github.com/thunderbrewhq/binana/go/app/cmd/root"
_ "github.com/thunderbrewhq/binana/go/app/cmd/tidy"
"github.com/thunderbrewhq/binana/go/app"
)
func Execute() {
err := root.RootCmd.Execute()
if err != nil {
app.Fatal(err)
}
}