mirror of
https://gitlab.durp.info/durfy/apps/durpot.git
synced 2026-05-08 00:11:26 -05:00
18 lines
231 B
Go
18 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{})
|
|
}
|