discordBots/cmd/funbot/config/config.go

14 lines
265 B
Go
Raw Permalink Normal View History

2023-03-09 22:37:01 +00:00
package config
import (
"github.com/disgoorg/snowflake/v2"
"os"
)
var (
Token = os.Getenv("disgo_token")
ApiImgurKey = os.Getenv("disgo_imgur")
GlobalCommands = os.Getenv("disgo_global")
RegisterGuildID = snowflake.GetEnv("disgo_guild_id")
)