WeChatFerry/clients/gohttp/main.go

23 lines
208 B
Go
Raw Normal View History

2023-12-17 13:16:15 +08:00
package main
import (
"embed"
2023-12-18 08:48:14 +08:00
"wechat-rest/args"
"wechat-rest/httpd"
2023-12-17 13:16:15 +08:00
)
//go:embed public
var efs embed.FS
func main() {
args.Efs = &efs
c := args.Config{}
c.Init().Unmarshal()
httpd.Server()
}