core/chain/chain.go
2022-09-20 11:48:30 +08:00

10 lines
124 B
Go

package chain
import (
"context"
)
type Chainer interface {
Route(ctx context.Context, network, address string) Route
}