| 178 | } |
| 179 | |
| 180 | func GetBuiltinRuntimeFactoryBuilder() map[string]func(configMap common.ConfigMap) (api.FunctionRuntimeFactory, error) { |
| 181 | return map[string]func(configMap common.ConfigMap) (api.FunctionRuntimeFactory, error){ |
| 182 | //nolint:unparam |
| 183 | common.WASMRuntime: func(configMap common.ConfigMap) (api.FunctionRuntimeFactory, error) { |
| 184 | return wazero.NewWazeroFunctionRuntimeFactory(), nil |
| 185 | }, |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | func setupFactories[T any](factoryBuilder map[string]func(configMap common.ConfigMap) (T, error), |
| 190 | config map[string]common.ConfigMap, |