type Router interface {
// Route returns a backend name for a given call, or an error. Route(ctx context.Context, fullMethodName string) (backendName string, err error)
}
Router is an interface that decides what backend a given stream should be directed to.