collect-system/apps/server/src/models/post/post.controller.ts

11 lines
316 B
TypeScript
Raw Normal View History

2024-12-30 08:26:40 +08:00
import { Controller, Get, Query, UseGuards } from '@nestjs/common';
import { PostService } from './post.service';
import { AuthGuard } from '@server/auth/auth.guard';
2025-01-06 08:45:23 +08:00
import { db } from '@nice/common';
2024-12-30 08:26:40 +08:00
@Controller('post')
export class PostController {
2025-02-20 20:02:27 +08:00
constructor(private readonly postService: PostService) {}
2024-12-30 08:26:40 +08:00
}