* docs: prepare Vendoo 1.41.2 git-ignore boundary hotfix * fix: track native source modules with root-anchored runtime ignores
14 lines
330 B
JavaScript
14 lines
330 B
JavaScript
import manifest from './module.json' with { type: 'json' };
|
|
|
|
export function createQualityModule() {
|
|
return {
|
|
manifest,
|
|
source: 'builtin',
|
|
lifecycle: {
|
|
async start() {},
|
|
async stop() {},
|
|
async health() { return { ok: true, native: true, contracts: ['reports', 'ai-suggestions'] }; },
|
|
},
|
|
};
|
|
}
|