Skip to content

Commit

Permalink
fix: main
Browse files Browse the repository at this point in the history
  • Loading branch information
apskhem committed Oct 18, 2024
1 parent d826568 commit 0588ca8
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions cli/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,18 @@ var version = "dev"
var cli struct {
cmds.GlobalArgs

Deploy cmds.DeployCmd `cmd:"" help:"Deploy a project."`
Dump cmds.DumpCmd `cmd:"" help:"Dumps a project's blueprint to JSON."`
CI cmds.CICmd `cmd:"" help:"Simulate a CI run."`
Release cmds.ReleaseCmd `cmd:"" help:"Release a project."`
Run cmds.RunCmd `cmd:"" help:"Run an Earthly target."`
Scan cmds.ScanCmd `cmd:"" help:"Scan for Earthfiles."`
Secret cmds.SecretCmd `cmd:"" help:"Manage secrets."`
Tag cmds.TagCmd `cmd:"" help:"Generate a tag for a project."`
Validate cmds.ValidateCmd `cmd:"" help:"Validates a project."`
Version VersionCmd `cmd:"" help:"Print the version."`
Deploy cmds.DeployCmd `kong:"cmd" help:"Deploy a project."`
Dump cmds.DumpCmd `kong:"cmd" help:"Dumps a project's blueprint to JSON."`
CI cmds.CICmd `kong:"cmd" help:"Simulate a CI run."`
Release cmds.ReleaseCmd `kong:"cmd" help:"Release a project."`
Run cmds.RunCmd `kong:"cmd" help:"Run an Earthly target."`
Scan cmds.ScanCmd `kong:"cmd" help:"Scan for Earthfiles."`
Secret cmds.SecretCmd `kong:"cmd" help:"Manage secrets."`
Tag cmds.TagCmd `kong:"cmd" help:"Generate a tag for a project."`
Validate cmds.ValidateCmd `kong:"cmd" help:"Validates a project."`
Version VersionCmd `kong:"cmd" help:"Print the version."`

InstallCompletions kongplete.InstallCompletions `cmd:"" help:"install shell completions"`
}

type VersionCmd struct{}
Expand Down

0 comments on commit 0588ca8

Please sign in to comment.