mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-20 13:56:45 +00:00
9 lines
222 B
Go
9 lines
222 B
Go
package flowcontext
|
|
|
|
import "github.com/fabbez/topiad/infrastructure/config"
|
|
|
|
// Config returns an instance of *config.Config associated to the flow context.
|
|
func (f *FlowContext) Config() *config.Config {
|
|
return f.cfg
|
|
}
|