Skip to content

Commit

Permalink
Add DeleteCommand to example binary
Browse files Browse the repository at this point in the history
  • Loading branch information
irees committed Oct 9, 2024
1 parent 111e4b0 commit c4341f2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/tlserver/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,16 @@ func init() {
genDocCommand.Hidden = true

rootCmd.AddCommand(
tlcli.CobraHelper(&cmds.DeleteCommand{}, pc, "delete"),
tlcli.CobraHelper(&cmds.ExtractCommand{}, pc, "extract"),
tlcli.CobraHelper(&cmds.FetchCommand{}, pc, "fetch"),
tlcli.CobraHelper(&cmds.ImportCommand{}, pc, "import"),
tlcli.CobraHelper(&cmds.MergeCommand{}, pc, "merge"),
tlcli.CobraHelper(&cmds.RebuildStatsCommand{}, pc, "rebuild-stats"),
tlcli.CobraHelper(&cmds.SyncCommand{}, pc, "sync"),
tlcli.CobraHelper(&cmds.UnimportCommand{}, pc, "unimport"),
tlcli.CobraHelper(&cmds.ValidatorCommand{}, pc, "validate"),
tlcli.CobraHelper(&diff.Command{}, pc, "diff"),
tlcli.CobraHelper(&cmds.ExtractCommand{}, pc, "extract"),
tlcli.CobraHelper(&cmds.MergeCommand{}, pc, "merge"),
tlcli.CobraHelper(&ServerCommand{}, pc, "server"),
tlcli.CobraHelper(&versionCommand{}, pc, "version"),
genDocCommand,
Expand Down

0 comments on commit c4341f2

Please sign in to comment.