10 lines
259 B
Go
10 lines
259 B
Go
// Package router
|
|
package router
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type Router interface {
|
|
Route(fromNode uuid.UUID, fromOutPort string, toNode uuid.UUID, toInPort string)
|
|
Unroute(fromNode uuid.UUID, fromOutPort string, toNode uuid.UUID, toInPort string)
|
|
}
|