8 lines
148 B
Go
8 lines
148 B
Go
|
package main
|
||
|
|
||
|
type Config struct {
|
||
|
Debug bool `toml:"debug,omitempty"`
|
||
|
AppID string `toml:"app_id"`
|
||
|
BotToken string `toml:"bot_token"`
|
||
|
}
|