initial-commit
This commit is contained in:
14
template/src/index.js
Normal file
14
template/src/index.js
Normal file
@@ -0,0 +1,14 @@
|
||||
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)
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user