initial commit

This commit is contained in:
2025-09-19 14:59:07 -04:00
commit d2b9f273e0
14 changed files with 898 additions and 0 deletions

26
cmd/root.go Normal file
View File

@@ -0,0 +1,26 @@
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(tunnelCmd)
}

40
cmd/serve.go Normal file
View File

@@ -0,0 +1,40 @@
package cmd
import (
"reichard.io/conduit/config"
"reichard.io/conduit/server"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
var serveCmd = &cobra.Command{
Use: "serve",
Short: "Start the conduit server",
Long: `Start the conduit server to handle incoming tunnel requests`,
Run: func(cmd *cobra.Command, args []string) {
// Get Server Config
cfg, err := config.GetServerConfig(cmd.Flags())
if err != nil {
log.Fatal("failed to get server config:", err)
}
// Create Server
srv, err := server.NewServer(cfg)
if err != nil {
log.Fatal("failed to create server:", err)
}
// Start Server
if err := srv.Start(); err != nil {
log.Fatal("failed to start server:", err)
}
},
}
func init() {
configDefs := config.GetConfigDefs[config.ServerConfig]()
for _, d := range configDefs {
serveCmd.Flags().String(d.Key, d.Default, d.Description)
}
}