11 lines
316 B
TypeScript
Executable File
11 lines
316 B
TypeScript
Executable File
import { Controller, Get, Query, UseGuards } from '@nestjs/common';
|
|
|
|
import { PostService } from './post.service';
|
|
import { AuthGuard } from '@server/auth/auth.guard';
|
|
import { db } from '@nice/common';
|
|
|
|
@Controller('post')
|
|
export class PostController {
|
|
constructor(private readonly postService: PostService) {}
|
|
}
|