tech: docker&envs

This commit is contained in:
Florian Sylvain
2024-04-24 15:00:34 +00:00
parent 5d8a33060a
commit 45bc0cffbf
7 changed files with 93 additions and 11 deletions
+21 -1
View File
@@ -1 +1,21 @@
package main
package main
import (
"fmt"
"github.com/Floriansylvain/GObot/bot"
"github.com/Floriansylvain/GObot/config"
)
func main() {
err := config.LoadConfig()
if err != nil {
fmt.Println(err.Error())
return
}
bot.Start()
select {}
}