Skip to content

Commit

Permalink
updated imporsts
Browse files Browse the repository at this point in the history
  • Loading branch information
alxford45 committed Nov 29, 2020
1 parent e7fd6a8 commit b03a0db
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions api/src/work/work.controller.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
import {
Controller,
Get,
Post,
Body,
Put,
Param,
Delete,
} from '@nestjs/common';
import { WorkService } from './work.service';
import { CreateWorkDTO } from './dto/create-work.dto';
import { Body, Controller, Get, Param, Post } from '@nestjs/common';
import { ApiTags } from '@nestjs/swagger';
import { CreateWorkDTO } from './dto/create-work.dto';
import { WorkType } from './dto/work.dto';
import { WorkService } from './work.service';

@ApiTags('work')
@Controller('/api/work')
Expand Down

0 comments on commit b03a0db

Please sign in to comment.