Added file with vk constants
This commit is contained in:
parent
27f054b0f3
commit
728749d60a
2 changed files with 11 additions and 3 deletions
11
vk/secrets.go
Normal file
11
vk/secrets.go
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
package vk
|
||||
|
||||
import (
|
||||
"os"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
var TOKEN = os.Getenv("VK_TOKEN")
|
||||
var SECRET_KEY = os.Getenv("VK_SECRET_KEY")
|
||||
var GROUPID, _ = strconv.ParseInt(os.Getenv("VK_GROUP_ID"), 10, 64)
|
||||
var CONFIRMATION_STRING = os.Getenv("VK_CONFIRMATION_STRING")
|
||||
Loading…
Add table
Add a link
Reference in a new issue