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

11 lines
394 B
TypeScript
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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端点
}