apps-durpcli/cmd/net/net.go

19 lines
257 B
Go
Raw Normal View History

2023-02-19 13:44:18 -06:00
package net
import (
"github.com/spf13/cobra"
)
var NetCmd = &cobra.Command{
Use: "net",
2023-02-19 18:20:25 -06:00
Short: "Net is a palette that contains network based commands",
Long: ``,
2023-02-19 13:44:18 -06:00
Run: func(cmd *cobra.Command, args []string) {
cmd.Help()
},
}
func init() {
}