From 319a4b0f664ca08342d4cb905fcaec0d583ab4de Mon Sep 17 00:00:00 2001 From: Akulij Date: Sat, 29 Mar 2025 19:12:29 +0800 Subject: [PATCH] add SheetID to config structure --- config/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/config/config.go b/config/config.go index 39e7c99..72760c5 100644 --- a/config/config.go +++ b/config/config.go @@ -11,6 +11,7 @@ type Config struct { BotToken string `env:"BOTTOKEN, required"` AdminPass string `env:"ADMINPASSWORD, required"` // to activate admin privileges in bot type command: /secret `AdminPass` AdminID *int64 `env:"ADMINID"` // optional admin ID for notifications + SheetID string `env:"SHEETID, required"` // id of google sheet where users will be synced } func GetConfig() Config {