discordBots/cmd/vcbot/config/config.go

15 lines
285 B
Go
Raw Permalink Normal View History

2023-03-08 20:39:42 +00:00
package config
import (
"github.com/disgoorg/snowflake/v2"
"os"
)
var (
Token = os.Getenv("disgo_token")
RegisterGuildID = snowflake.GetEnv("disgo_guild_id")
ChannelVoiceGroupID snowflake.ID
ChannelVoiceLogID snowflake.ID
ChannelVoicePrefix = "🔉 - "
)