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';