summaryrefslogtreecommitdiff
path: root/internal/telegram/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/telegram/config.go')
-rw-r--r--internal/telegram/config.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/telegram/config.go b/internal/telegram/config.go
new file mode 100644
index 0000000..9fd6029
--- /dev/null
+++ b/internal/telegram/config.go
@@ -0,0 +1,6 @@
+package telegram
+
+type Config struct {
+ BotToken string `env:"TELEGRAM_TOKEN"`
+ TargetGroups []int64 `env:"TELEGRAM_GROUPS"`
+}