Files
frp-panel/cmd/frpp/main.go
VaalaCat f07c03ce68 feat: fx
2025-04-26 10:52:21 +00:00

15 lines
251 B
Go

package main
import (
"github.com/VaalaCat/frp-panel/utils/logger"
"github.com/spf13/cobra"
)
func main() {
logger.InitLogger()
cobra.MousetrapHelpText = ""
rootCmd := buildCommand()
setMasterCommandIfNonePresent(rootCmd)
rootCmd.Execute()
}