14 lines
415 B
TypeScript
14 lines
415 B
TypeScript
import { Express } from 'express';
|
|
import { logger } from '../utils/logger';
|
|
|
|
export const pluginService = {
|
|
async loadPlugins(app: Express) {
|
|
logger.info('Loading plugins...');
|
|
// Implementation details...
|
|
},
|
|
async installPlugin(zipPath: string) { },
|
|
async activatePlugin(slug: string) { },
|
|
async deactivatePlugin(slug: string) { },
|
|
async removePlugin(slug: string) { },
|
|
};
|