mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-05-02 02:00:20 -05:00
23 lines
308 B
Go
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
|
|
}
|