2023-12-17 13:16:15 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"embed"
|
|
|
|
|
2023-12-18 08:48:14 +08:00
|
|
|
"wechat-rest/httpd"
|
2024-08-26 13:28:25 +08:00
|
|
|
|
|
|
|
"github.com/opentdp/wrest-chat/args"
|
2023-12-17 13:16:15 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
//go:embed public
|
|
|
|
var efs embed.FS
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
|
|
|
args.Efs = &efs
|
|
|
|
|
|
|
|
httpd.Server()
|
|
|
|
|
|
|
|
}
|