gospt/cmd/devices.go

19 lines
290 B
Go
Raw Normal View History

2023-01-09 15:52:21 -08: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 16:08:25 -06:00
commands.Devices(ctx)
2023-01-09 15:52:21 -08:00
},
}