1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
Patrick Seeburger a5f2cc4a1e Initial version of birdwatcher source redesign
Split up the birdwatcher source into multiple types, that resemble the
functionality that was removed from birdwatcher.

* Remove NeighborsSummary() feature and tests
* Provide example config options
2019-03-08 09:58:56 +01:00

18 lines
486 B
Go

package birdwatcher
type Config struct {
Id string
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"`
}