first commit

This commit is contained in:
Vaala Cat
2023-05-17 14:36:40 +08:00
commit 854341b902
9 changed files with 280 additions and 0 deletions

12
main.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
"tg-mc/services"
"github.com/joho/godotenv"
)
func main() {
godotenv.Load()
services.Run()
}