lucky/web.go

12 lines
210 B
Go
Raw Normal View History

2022-07-14 07:39:54 +08:00
package main
import (
2022-10-26 18:38:27 +08:00
"github.com/gdy666/lucky/config"
2022-07-26 20:16:14 +08:00
"github.com/gdy666/lucky/web"
2022-07-14 07:39:54 +08:00
)
2022-10-26 18:38:27 +08:00
func RunAdminWeb(conf *config.BaseConfigure) {
//listen := fmt.Sprintf(":%d", listenPort)
go web.RunAdminWeb(conf)
2022-07-14 07:39:54 +08:00
}