Files
phylum/server/internal/command/fs/trash/cmd.go
T
2025-05-27 22:38:24 +05:30

23 lines
308 B
Go

package trash
import (
"github.com/spf13/cobra"
)
func SetupCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "trash",
Short: "Trash",
}
cmd.AddCommand(
setupDeleteCommand(),
setupEmptyCommand(),
setupListCommand(),
setupRestoreCommand(),
setupSummaryCommand(),
)
return cmd
}