mirror of
https://gitlab.com/psuapp/psu.git
synced 2024-08-30 18:12:34 +00:00
16 lines
226 B
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)
|
|
}
|