2023-08-23 15:30:52 +09:00

9 lines
225 B
Go

package flowcontext
import "github.com/c4ei/yunseokyeol/infrastructure/config"
// Config returns an instance of *config.Config associated to the flow context.
func (f *FlowContext) Config() *config.Config {
return f.cfg
}