22 lines
421 B
TypeScript
22 lines
421 B
TypeScript
import {
|
|
Controller,
|
|
Get,
|
|
Post,
|
|
Put,
|
|
Delete,
|
|
Body,
|
|
Param,
|
|
Query,
|
|
UploadedFile,
|
|
UseInterceptors,
|
|
Res,
|
|
} from '@nestjs/common';
|
|
import { FileInterceptor } from '@nestjs/platform-express';
|
|
import { LibraryService } from './library.service';
|
|
import { Response } from 'express';
|
|
|
|
@Controller('library')
|
|
export class LibraryController {
|
|
constructor(private readonly libraryService: LibraryService) {}
|
|
}
|