Restructure cli commands (#4467)

This commit is contained in:
Robert Kaussow
2024-11-28 18:25:49 +01:00
committed by GitHub
parent 6327dcd36f
commit d4c0178251
38 changed files with 872 additions and 148 deletions

View File

@@ -17,7 +17,9 @@ package repo
import (
"github.com/urfave/cli/v3"
"go.woodpecker-ci.org/woodpecker/v2/cli/repo/cron"
"go.woodpecker-ci.org/woodpecker/v2/cli/repo/registry"
"go.woodpecker-ci.org/woodpecker/v2/cli/repo/secret"
)
// Command exports the repository command.
@@ -34,5 +36,7 @@ var Command = &cli.Command{
repoChownCmd,
repoSyncCmd,
registry.Command,
secret.Command,
cron.Command,
},
}