MCPcopy Create free account
hub / github.com/foxcpp/maddy / NotInitialized

Method NotInitialized

framework/container/registry.go:139–148  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

137}
138
139func (r *Registry) NotInitialized() []module.Module {
140 notinit := make([]module.Module, 0, len(r.instances)-len(r.initialized))
141 for name, mod := range r.instances {
142 if _, ok := r.initialized[name]; ok {
143 continue
144 }
145 notinit = append(notinit, mod.Mod)
146 }
147 return notinit
148}

Callers 1

moduleConfigureFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected