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

12 lines
318 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 {
constructor(private readonly postService: PostService) { }
2024-12-31 15:57:32 +08:00
2024-12-30 08:26:40 +08:00
}