Files
frp-panel/cmd/frpp/main.go
2024-12-24 14:38:34 +00:00

20 lines
297 B
Go

package main
import (
"github.com/VaalaCat/frp-panel/conf"
"github.com/VaalaCat/frp-panel/rpc"
"github.com/spf13/cobra"
)
func main() {
cobra.MousetrapHelpText = ""
initLogger()
initCommand()
conf.InitConfig()
rpc.InitRPCClients()
setMasterCommandIfNonePresent()
rootCmd.Execute()
}