initial commit

This commit is contained in:
marko
2024-10-03 15:52:06 +02:00
parent b9656c91bb
commit d928a681f9
8 changed files with 328 additions and 0 deletions

14
main.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import (
"log"
"gitea.dmz.rs/bauljamic123arlijam/neko-u-krovu-bot/chatbot"
)
func main() {
nkbot, err := chatbot.NewNekoUKrovuBot()
if err != nil {
log.Fatal(err)
}
nkbot.Listen()
}