27 lines
416 B
Go
27 lines
416 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var rootCmd = &cobra.Command{
|
|
Use: "conduit",
|
|
Short: "A tunneling service similar to ngrok",
|
|
Long: `Conduit allows you to expose local services through secure tunnels`,
|
|
}
|
|
|
|
func Execute() {
|
|
if err := rootCmd.Execute(); err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(serveCmd)
|
|
rootCmd.AddCommand(linkCmd)
|
|
}
|