Added dict with additional cards
This commit is contained in:
parent
181f3bc0aa
commit
88ea431a27
26 changed files with 232 additions and 35 deletions
11
internal/vk/secrets.go
Normal file
11
internal/vk/secrets.go
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
package vk
|
||||
|
||||
import (
|
||||
"os"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
var Token = os.Getenv("VK_TOKEN")
|
||||
var SecretKey = os.Getenv("VK_SECRET_KEY")
|
||||
var GroupId, _ = strconv.ParseInt(os.Getenv("VK_GROUP_ID"), 10, 64)
|
||||
var ConfirmationString = os.Getenv("VK_CONFIRMATION_STRING")
|
||||
Loading…
Add table
Add a link
Reference in a new issue