Removed logger

This commit is contained in:
Artyom Belousov 2019-05-12 11:34:16 +03:00
parent c59d47326d
commit 002c175af1

View file

@ -4,17 +4,10 @@ import (
"github.com/flygrounder/mtg-price-vk/vk"
"github.com/gin-gonic/gin"
"math/rand"
"runtime"
"time"
)
func main() {
go (func() {
for {
time.Sleep(5 * time.Second)
println(runtime.NumGoroutine())
}
})()
rand.Seed(time.Now().UTC().UnixNano())
r := gin.Default()
r.POST("callback/message", vk.HandleMessage)