mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-07-17 09:51:56 +00:00
* Update main.go, main.go, and 3 more files... * WIP * Update main.go, oas_controller.go, and 3 more files... * Update main.go, oas_generator.go, and servicemap.go * Update loader.go and resolver.go * Update oas_generator.go * Update oas_generator.go, specgen_test.go, and 3 more files... * Update service_map_controller_test.go * Update oas_controller_test.go
12 lines
309 B
Go
12 lines
309 B
Go
package dependency
|
|
|
|
var typeIntializerMap = make(map[DependencyContainerType]func() interface{}, 0)
|
|
|
|
func RegisterGenerator(name DependencyContainerType, fn func() interface{}) {
|
|
typeIntializerMap[name] = fn
|
|
}
|
|
|
|
func GetInstance(name DependencyContainerType) interface{} {
|
|
return typeIntializerMap[name]()
|
|
}
|