10 lines
399 B
TypeScript
10 lines
399 B
TypeScript
|
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端点
|
|||
|
}
|