mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-20 22:06:42 +00:00
11 lines
202 B
Go
11 lines
202 B
Go
package flowcontext
|
|
|
|
import (
|
|
"github.com/fabbez/topiad/domain"
|
|
)
|
|
|
|
// Domain returns the Domain object associated to the flow context.
|
|
func (f *FlowContext) Domain() domain.Domain {
|
|
return f.domain
|
|
}
|