Manifestbasierter Production-Updater 3.3, Modulnavigation, optionales Produktbild Studio, Listing-Studio-Aktionsleiste sowie plattformübergreifende Windows-/Linux-Release-Gates.
14 lines
357 B
JavaScript
14 lines
357 B
JavaScript
import manifest from './module.json' with { type: 'json' };
|
|
|
|
export function createProductImageToolsModule() {
|
|
return {
|
|
manifest,
|
|
source: 'builtin',
|
|
lifecycle: {
|
|
async start() {},
|
|
async stop() {},
|
|
async health() { return { ok: true, native: true, optional: true, contracts: ['ghost-mannequin', 'flatlay'] }; },
|
|
},
|
|
};
|
|
}
|