openwebui-telegram/cmd/main.go

12 lines
174 B
Go
Raw Permalink Normal View History

package main
import (
"github.com/sid-sun/openwebui-bot/cmd/config"
"github.com/sid-sun/openwebui-bot/pkg/bot"
)
func main() {
cfg := config.Load()
bot.StartBot(cfg)
}