45 lines
912 B
Go
45 lines
912 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"gitee.ltd/lxh/logger/log"
|
|
"math/rand"
|
|
"net/http"
|
|
"time"
|
|
"wireguard-dashboard/config"
|
|
"wireguard-dashboard/initialize"
|
|
"wireguard-dashboard/queues"
|
|
"wireguard-dashboard/route"
|
|
"wireguard-dashboard/script"
|
|
)
|
|
|
|
func init() {
|
|
initialize.Init() // 初始化
|
|
if err := script.NewScript().Do(); err != nil {
|
|
log.Errorf("执行脚本失败: %v", err.Error())
|
|
}
|
|
go queues.StartConsumer() // 启动队列
|
|
}
|
|
|
|
func main() {
|
|
rand.New(rand.NewSource(time.Now().Local().UnixNano()))
|
|
route.IncludeRouters(
|
|
route.CaptchaApi,
|
|
route.UserApi,
|
|
route.ServerApi,
|
|
route.ClientApi,
|
|
route.SettingApi,
|
|
route.DashboardApi,
|
|
)
|
|
handler := route.InitRouter()
|
|
|
|
httpServe := http.Server{
|
|
Addr: fmt.Sprintf(":%d", config.Config.Http.Port),
|
|
Handler: handler,
|
|
}
|
|
|
|
if err := httpServe.ListenAndServe(); err != nil {
|
|
log.Panicf("启动http服务端失败: %v", err.Error())
|
|
}
|
|
}
|