mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-11-24 06:25:55 +00:00
11 lines
205 B
Go
11 lines
205 B
Go
package flowcontext
|
|
|
|
import (
|
|
"github.com/c4ei/YunSeokYeol/domain"
|
|
)
|
|
|
|
// Domain returns the Domain object associated to the flow context.
|
|
func (f *FlowContext) Domain() domain.Domain {
|
|
return f.domain
|
|
}
|