wechatgpt/main.go
2022-12-12 20:35:08 +09:00

16 lines
244 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.StartTelegramBot()
bootstrap.StartWebChat()
}