Files
DurpCLI/cmd/net/net.go
2023-05-27 11:43:24 -05:00

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