Files
makemd/server/src/services/SemanticLogService.ts

16 lines
357 B
TypeScript
Raw Normal View History

import { logger } from '../utils/logger';
/**
* Semantic Log Service
* @description
*/
export class SemanticLogService {
/**
*
*/
static async initTable() {
logger.info('🚀 SemanticLogService table initialized');
// 这里可以添加数据库表初始化逻辑
}
}