wechatgpt/main.go
2022-12-07 15:47:46 +09:00

15 lines
214 B
Go

package main
import (
"github.com/wechatgpt/wechatbot/bootstrap"
"github.com/wechatgpt/wechatbot/config"
)
func main() {
err := config.LoadConfig()
if err != nil {
panic(err)
}
bootstrap.StartWebChat()
}