12 lines
274 B
Go
12 lines
274 B
Go
|
// Fantasy World Zookeeper Bot
|
||
|
// Copyright (c) 2018 Vladimir "fat0troll" Hodakov
|
||
|
|
||
|
package config
|
||
|
|
||
|
// Telegram represents bot's Telegram configuration
|
||
|
type Telegram struct {
|
||
|
Token string `yaml:"token"`
|
||
|
Webhook Webhook `yaml:"webhook"`
|
||
|
Proxy Proxy `yaml:"proxy"`
|
||
|
}
|