conduit/cmd/root.go
2025-09-20 18:14:42 -04:00

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