refactor funbot to packages

This commit is contained in:
Seraphim Strub 2023-03-09 23:37:01 +01:00
parent 21c6e7a748
commit 5d96c929bb
5 changed files with 182 additions and 160 deletions

View file

@ -0,0 +1,13 @@
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")
)