1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
2017-05-17 16:12:01 +02:00

29 lines
451 B
Go

package birdwatcher
import (
"log"
)
type Birdwatcher struct {
config *Config
}
func NewBirdwatcher(config *Config) *Birdwatcher {
birdwatcher := &Birdwatcher{
config: config,
}
return birdwatcher
}
func (self *Birdwatcher) Status() {
log.Println("Implement me: Status()")
}
func (self *Birdwatcher) Neighbours() {
log.Println("Implement me: Neighbours()")
}
func (self *Birdwatcher) Routes() {
log.Println("Implement me: Routes()")
}