I want to set an instance of a some type as an element in an associative array. What type should I use?
var objects //???
//The constructor will return instance of the IndexController type
objects["IndexController"] = index.Constructor()
fmt.Println(objects)
I will be thankful!