12 lines
289 B
Go
12 lines
289 B
Go
|
// Fantasy World Zookeeper Bot
|
||
|
// Copyright (c) 2018 Vladimir "fat0troll" Hodakov
|
||
|
|
||
|
package config
|
||
|
|
||
|
// Webhook handles settings for Telegram webhook
|
||
|
type Webhook struct {
|
||
|
Enabled bool `yaml:"enabled"`
|
||
|
Domain string `yaml:"domain,omitempty"`
|
||
|
Listen string `yaml:"listen,omitempty"`
|
||
|
}
|