origin/apps/server/src/models/sys-logs/systemLog.controller.ts

11 lines
394 B
TypeScript
Raw Normal View History

2025-05-27 16:48:09 +08:00
import { Controller, UseGuards } from '@nestjs/common';
2025-03-26 13:00:55 +08:00
import { AuthGuard } from '@server/auth/auth.guard';
2025-05-27 16:48:09 +08:00
import { SystemLogService } from './systemLog.service';
2025-03-26 13:00:55 +08:00
@Controller('system-logs')
export class SystemLogController {
2025-05-27 16:48:09 +08:00
constructor(private readonly systemLogService: SystemLogService) {}
// @UseGuards(AuthGuard)
// 控制器使用trpc路由不需要在这里定义API端点
}