gospt/cmd/devices.go

19 lines
290 B
Go
Raw Permalink Normal View History

2023-01-09 23:52:21 +00:00
package cmd
import (
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(devicesCmd)
}
var devicesCmd = &cobra.Command{
Use: "devices",
Short: "Prints out devices",
Long: `Prints out devices`,
Run: func(cmd *cobra.Command, args []string) {
2023-02-17 22:08:25 +00:00
commands.Devices(ctx)
2023-01-09 23:52:21 +00:00
},
}