6 lines
132 B
Go
6 lines
132 B
Go
package telegram
|
|
|
|
type Config struct {
|
|
BotToken string `env:"TELEGRAM_TOKEN"`
|
|
TargetGroups []int64 `env:"TELEGRAM_GROUPS"`
|
|
}
|