19 lines
231 B
Go
19 lines
231 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"gitlab.com/DeveloperDurp/durpot/handlers"
|
|
)
|
|
|
|
func main() {
|
|
|
|
err := handlers.Start()
|
|
if err != nil {
|
|
fmt.Println(err.Error())
|
|
return
|
|
}
|
|
fmt.Println("Bot is running!")
|
|
<-make(chan struct{})
|
|
}
|