2023-12-11 03:35:08 +01:00

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
}