micro/router/route.go
2019-06-19 18:03:40 +01:00

8 lines
112 B
Go

package router
// Route is micro network route
type Route struct {
// Hop is the next route hop
Hop Router
}