package main import ( "context" "dehub.dev/src/dehub.git/cmd/dehub/dcmd" ) func main() { cmd := dcmd.New() cmd.SubCmd("commit", "commits staged changes to the head of the current branch", cmdCommit) cmd.SubCmd("verify", "verifies one or more commits as having the proper credentials", cmdVerify) cmd.SubCmd("hook", "use dehub as a git hook", cmdHook) cmd.SubCmd("combine", "Combine multiple change and credential commits into a single commit", cmdCombine) cmd.Run(func() (context.Context, error) { return context.Background(), nil }) }