()
| 27 | ) |
| 28 | }, |
| 29 | async getPlugins(): Promise<Plugin[]> { |
| 30 | const plugins = await ky.selectFrom('plugin').selectAll().execute() |
| 31 | return plugins.map(pluginEntityToDomain) |
| 32 | }, |
| 33 | async getPluginCount() { |
| 34 | const plugins = await ky |
| 35 | .selectFrom('plugin') |
nothing calls this directly
no outgoing calls
no test coverage detected