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() {
|
|
|
|
|
|
|
|
|
|
}
|