15 lines
413 B
JavaScript
15 lines
413 B
JavaScript
import { definePlugin } from '@takerofnotes/plugin-sdk'
|
|
import ${NAME_PASCAL_CASE}Adapter from './${NAME_PASCAL_CASE}Adapter'
|
|
|
|
export default definePlugin({
|
|
id: '${NAME_KEBAB_CASE}',
|
|
name: '${NAME_TITLE_CASE}',
|
|
description: '${DESCRIPTION}',
|
|
version: '0.1.0',
|
|
apiVersion: '0.3.1',
|
|
configSchema: [],
|
|
createAdapter(config) {
|
|
return new ${NAME_PASCAL_CASE}Adapter(config)
|
|
},
|
|
})
|