go-dette/main.go

17 lines
301 B
Go
Raw Normal View History

2023-01-19 23:12:55 +03:00
package main
import (
"log"
2023-01-20 00:30:21 +03:00
"git.nefrace.ru/nefrace/nechotron"
2023-01-19 23:12:55 +03:00
)
2023-01-24 00:37:27 +03:00
var BuildTime string
2023-01-19 23:12:55 +03:00
func main() {
2023-01-24 00:37:27 +03:00
neco := nechotron.NewTron("1698825178:AAHy4Er7z768CmYy9M5drJOMQO2S-QnwdTI", &MainState)
neco.Use(UserLogger)
2023-01-22 23:53:20 +03:00
// neko.ApiServer = "http://192.168.100.15:7373"
2023-01-24 00:37:27 +03:00
log.Fatal(neco.DispatchPoll())
2023-01-19 23:12:55 +03:00
}