19 lines
324 B
Go
19 lines
324 B
Go
|
/*
|
||
|
Copyright © 2024 Steven Polley <himself@stevenpolley.net>
|
||
|
*/
|
||
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
// generateCmd represents the generate command
|
||
|
var generateCmd = &cobra.Command{
|
||
|
Use: "generate",
|
||
|
Short: "Generates configuration for Hide Your Ports",
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
rootCmd.AddCommand(generateCmd)
|
||
|
}
|