Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
feat: Enable QGB commands (#118)
Browse files Browse the repository at this point in the history
* feat: enable commands for QGB

* feat: add also verify command from celestia-app

* chore: gofumpt
  • Loading branch information
rach-id authored Feb 12, 2023
1 parent f37279e commit d3ccfbd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion cmd/qgb/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ import (
"context"
"os"

"github.com/celestiaorg/celestia-app/x/qgb/client"
"github.com/celestiaorg/orchestrator-relayer/cmd/qgb/deploy"
"github.com/celestiaorg/orchestrator-relayer/cmd/qgb/orchestrator"
"github.com/celestiaorg/orchestrator-relayer/cmd/qgb/relayer"

"github.com/spf13/cobra"
)

Expand All @@ -24,7 +29,10 @@ func NewRootCmd() *cobra.Command {
}

rootCmd.AddCommand(
// TODO add the QGB commands
orchestrator.Command(),
relayer.Command(),
deploy.Command(),
client.VerifyCmd(),
)

rootCmd.SetHelpCommand(&cobra.Command{})
Expand Down

0 comments on commit d3ccfbd

Please sign in to comment.