11 lines
394 B
TypeScript
Executable File
11 lines
394 B
TypeScript
Executable File
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端点
|
||
}
|