2023-08-23 15:11:28 +09:00

11 lines
200 B
Go

package flowcontext
import (
"github.com/c4ei/kaspad/domain"
)
// Domain returns the Domain object associated to the flow context.
func (f *FlowContext) Domain() domain.Domain {
return f.domain
}