Added auth opportunity for VK callback API

This commit is contained in:
Artyom Belousov 2019-05-11 17:06:01 +03:00
parent 657f967a49
commit e4c2d9673b
3 changed files with 9 additions and 4 deletions

View file

@ -11,5 +11,5 @@ func main() {
rand.Seed(time.Now().UTC().UnixNano())
r := gin.Default()
r.POST("callback/message", vk.HandleMessage)
r.Run()
r.Run(":80")
}