13 lines
341 B
Go
13 lines
341 B
Go
// Fantasy World Zookeeper Bot
|
|
// Copyright (c) 2018 Vladimir "fat0troll" Hodakov
|
|
|
|
package config
|
|
|
|
// Proxy handles settings for Telegram SOCKS5 proxy
|
|
type Proxy struct {
|
|
Enabled bool `yaml:"enabled"`
|
|
Address string `yaml:"address,omitempty"`
|
|
Username string `yaml:"username,omitempty"`
|
|
Password string `yaml:"password,omitempty"`
|
|
}
|