init
This commit is contained in:
commit
973c19f148
7 changed files with 95 additions and 0 deletions
12
main.go
Normal file
12
main.go
Normal 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()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue