1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

19 lines
567 B
Go
Raw Normal View History

2017-05-16 14:10:19 +02:00
package birdwatcher
type Config struct {
2018-12-09 17:31:02 +01:00
Id string
2017-06-19 15:27:11 +02:00
Name string
Api string `ini:"api"`
Timezone string `ini:"timezone"`
ServerTime string `ini:"servertime"`
ServerTimeShort string `ini:"servertime_short"`
ServerTimeExt string `ini:"servertime_ext"`
ShowLastReboot bool `ini:"show_last_reboot"`
Type string `ini:"type"`
PeerTablePrefix string `ini:"peer_table_prefix"`
PipeProtocolPrefix string `ini:"pipe_protocol_prefix"`
NeighborsRefreshTimeout int `ini:"neighbors_refresh_timeout"`
2017-05-16 14:10:19 +02:00
}