Continued scaffolding and interface definitions
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// 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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user