mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
8 lines
92 B
Go
8 lines
92 B
Go
|
package sources
|
||
|
|
||
|
type Source interface {
|
||
|
Status()
|
||
|
Neighbours()
|
||
|
Routes(neighbourId int)
|
||
|
}
|