package shelter import "sync" type AnimlConstructor func() Animal var ( registrMu sync.RWMutex registry = make(map[string]AnimlConstructor) )