docs(rfc): propose SDK developer project tooling feat: rename / docs ci: fix windows gates docs: revert
10 lines
234 B
Smarty
10 lines
234 B
Smarty
/** Local Cordis plugin. */
|
|
import type { Context } from 'cordis'
|
|
|
|
export const name = '{{pluginName}}'
|
|
|
|
/** Register this plugin's project-local behavior. */
|
|
export function apply(ctx: Context): void {
|
|
ctx.effect(() => () => {})
|
|
}
|