19 lines
257 B
Go
19 lines
257 B
Go
package net
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var NetCmd = &cobra.Command{
|
|
Use: "net",
|
|
Short: "Net is a palette that contains network based commands",
|
|
Long: ``,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
cmd.Help()
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
|
|
}
|