clapper / src /services /plugins /getDefaultPluginsState.ts
jbilcke-hf's picture
jbilcke-hf HF staff
add linter and prettifier
c1f12bf
raw
history blame
No virus
220 Bytes
import { PluginsState } from '@aitube/clapper-services'
export function getDefaultPluginsState(): PluginsState {
const state: PluginsState = {
availablePlugins: [],
installedPlugins: {},
}
return state
}