From 5913d3914d5acb6942c792daa30e6ff7b23b81ac Mon Sep 17 00:00:00 2001 From: Alexis <35.alexis.pele@gmail.com> Date: Mon, 2 Aug 2021 16:45:19 +0200 Subject: [PATCH] Removed useless imports --- src/common/classes/AuracleApiController.ts | 2 +- src/controllers/SpellController.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/classes/AuracleApiController.ts b/src/common/classes/AuracleApiController.ts index 7ee505f..3c1bf31 100644 --- a/src/common/classes/AuracleApiController.ts +++ b/src/common/classes/AuracleApiController.ts @@ -1,4 +1,4 @@ -import { getRepository, Repository } from "typeorm"; +import { Repository } from "typeorm"; export class AuracleApiController { public repository: Repository diff --git a/src/controllers/SpellController.ts b/src/controllers/SpellController.ts index be70436..5895afd 100644 --- a/src/controllers/SpellController.ts +++ b/src/controllers/SpellController.ts @@ -1,5 +1,5 @@ import express from 'express'; -import { getRepository, Repository } from 'typeorm'; +import { getRepository } from 'typeorm'; import { AuracleApiController } from "../common/classes/AuracleApiController"; import { AuracleApiResponse } from '../common/classes/AuracleApiResponse'; import { Spell } from '../database/models/spells/Spell';