13 lines
122 B
Go
13 lines
122 B
Go
package main
|
|
|
|
import (
|
|
"tg-mc/services"
|
|
|
|
"github.com/joho/godotenv"
|
|
)
|
|
|
|
func main() {
|
|
godotenv.Load()
|
|
services.Run()
|
|
}
|