in internal/pkg/core/artifacts/artifact.go [77:88]
func GetConfigContext() *ConfigContext {
once.Do(func() {
instance = &ConfigContext{
ApiMap: make(map[string]API),
EndpointMap: make(map[string]Endpoint),
SequenceMap: make(map[string]Sequence),
InboundMap: make(map[string]Inbound),
DeploymentConfig: make(map[string]interface{}),
}
})
return instance
}