mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-05-03 13:03:54 +00:00
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.
22 lines
658 B
Go
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)
|
|
}
|
|
}
|