12 lines
284 B
Go
12 lines
284 B
Go
// Fantasy World Zookeeper Helper Bot
|
|
// Copyright (c) 2018 Vladimir "fat0troll" Hodakov
|
|
|
|
package config
|
|
|
|
// Struct is a main configuration structure that holds all other
|
|
// structs within.
|
|
type Struct struct {
|
|
TDLib TDLib `yaml:"tdlib"`
|
|
Announce Announce `yaml:"announce"`
|
|
}
|