psu/cmd/service.go

16 lines
226 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
// serviceCmd represents the service command
var serviceCmd = &cobra.Command{
Use: "service",
Short: "Manage services",
}
func init() {
rootCmd.AddCommand(serviceCmd)
}