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

10 lines
399 B
TypeScript
Raw Normal View History

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