Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
then.go 182 B
package filter

import (
	"github.com/bio-routing/bio-rd/net"
	"github.com/bio-routing/bio-rd/route"
)

type Then interface {
	Do(p net.Prefix, pa *route.Path) (bool, *route.Path)
}