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

13 lines
292 B
Go
Raw Normal View History

2017-05-16 14:10:02 +02:00
package sources
2017-05-18 18:10:55 +02:00
import (
"github.com/ecix/alice-lg/backend/api"
)
2017-05-16 14:10:02 +02:00
type Source interface {
2017-05-18 18:10:55 +02:00
Status() (api.StatusResponse, error)
Neighbours() (api.NeighboursResponse, error)
Routes(neighbourId string) (api.RoutesResponse, error)
2017-05-23 13:58:58 +02:00
LookupPrefix(prefix string) (api.LookupResponse, error)
2017-05-16 14:10:02 +02:00
}