Skip to content

Commit

Permalink
FIX: Remove Swagger from API
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwellmattryan committed Mar 27, 2021
1 parent 9bbaf2f commit 99393cf
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions api/src/api.controller.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { Controller, Get, HttpCode, HttpStatus } from '@nestjs/common';
import { ApiResponse } from '@nestjs/swagger';

import { Routes } from '@api/core/configs/routes.config';

Expand All @@ -8,7 +7,6 @@ import { Routes } from '@api/core/configs/routes.config';
*/
@Controller()
export class ApiController {
@ApiResponse({ status: HttpStatus.OK, description: 'Welcome to the HelloTangle API!' })
@Get(Routes.Api.root)
@HttpCode(HttpStatus.OK)
public async getHome(): Promise<{ message: string }> {
Expand Down

0 comments on commit 99393cf

Please sign in to comment.