This commit is contained in:
xeon 2026-08-21 23:53:17 +03:00
commit 973c19f148
7 changed files with 95 additions and 0 deletions

12
main.go Normal file
View file

@ -0,0 +1,12 @@
package main
import (
"spambot/internal/bot"
"spambot/internal/config"
)
func main() {
config := config.NewConfig()
bot := bot.NewTelegramBot(config)
bot.Start()
}