10 lines
124 B
Go
10 lines
124 B
Go
package chain
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Chainer interface {
|
|
Route(ctx context.Context, network, address string) Route
|
|
}
|