mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-12-24 11:51:06 +08:00
16 lines
207 B
Go
16 lines
207 B
Go
package main
|
|
|
|
import (
|
|
"github.com/VaalaCat/frp-panel/conf"
|
|
"github.com/VaalaCat/frp-panel/rpc"
|
|
)
|
|
|
|
func main() {
|
|
initLogger()
|
|
initCommand()
|
|
conf.InitConfig()
|
|
rpc.InitRPCClients()
|
|
|
|
rootCmd.Execute()
|
|
}
|