mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
31 lines
496 B
Go
31 lines
496 B
Go
package birdwatcher
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/ecix/alice-lg/backend/sources"
|
|
)
|
|
|
|
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()")
|
|
}
|