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

20 lines
252 B
Go

package publink
import (
"github.com/spf13/cobra"
)
func SetupCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "publink",
Short: "Publink Management",
}
cmd.AddCommand(
setupCreateCommand(),
setupListCommand(),
)
return cmd
}