WeChatFerry/clients/gohttp/main.go
2024-08-26 13:28:25 +08:00

21 lines
184 B
Go
Vendored

package main
import (
"embed"
"wechat-rest/httpd"
"github.com/opentdp/wrest-chat/args"
)
//go:embed public
var efs embed.FS
func main() {
args.Efs = &efs
httpd.Server()
}