diff --git a/app.ts b/app.ts index 6cb147c..1c6c8a5 100644 --- a/app.ts +++ b/app.ts @@ -3,9 +3,9 @@ import * as http from 'http'; import * as bodyparser from 'body-parser'; import * as dotenv from 'dotenv'; // Router imports -import {partyPlanerRouter} from "./src/models/partyplaner/PartyPlaner.router"; -import {highlightMarkerRouter} from "./src/models/twitch-highlight-marker/HighlightMarker.router"; -import {dhbwServiceRouter} from "./src/models/dhbw-service/DHBWService.router"; +import {partyPlanerRouter} from './src/models/partyplaner/PartyPlaner.router'; +import {highlightMarkerRouter} from './src/models/twitch-highlight-marker/HighlightMarker.router'; +import {dhbwServiceRouter} from './src/models/dhbw-service/DHBWService.router'; dotenv.config(); diff --git a/src/models/dhbw-service/DHBWService.router.ts b/src/models/dhbw-service/DHBWService.router.ts index 2e40baf..15f7531 100644 --- a/src/models/dhbw-service/DHBWService.router.ts +++ b/src/models/dhbw-service/DHBWService.router.ts @@ -2,7 +2,7 @@ * Required External Modules and Interfaces */ import express, {Request, Response} from 'express'; -import {generalInfoRouter} from "./generalInfo/GeneralInfo.router"; +import {generalInfoRouter} from './generalInfo/GeneralInfo.router'; /** * Router Definition diff --git a/src/models/partyplaner/PartyPlaner.router.ts b/src/models/partyplaner/PartyPlaner.router.ts index f8eff3c..950976d 100644 --- a/src/models/partyplaner/PartyPlaner.router.ts +++ b/src/models/partyplaner/PartyPlaner.router.ts @@ -2,8 +2,8 @@ * Required External Modules and Interfaces */ import express, {Request, Response} from 'express'; -import {dataRouter} from "./data/Data.router"; -import {registerRouter} from "./register/Register.router"; +import {dataRouter} from './data/Data.router'; +import {registerRouter} from './register/Register.router'; /** * Router Definition diff --git a/src/models/twitch-highlight-marker/HighlightMarker.router.ts b/src/models/twitch-highlight-marker/HighlightMarker.router.ts index 712c233..a9c2861 100644 --- a/src/models/twitch-highlight-marker/HighlightMarker.router.ts +++ b/src/models/twitch-highlight-marker/HighlightMarker.router.ts @@ -2,7 +2,7 @@ * Required External Modules and Interfaces */ import express, {Request, Response} from 'express'; -import {addHighlightRouter} from "./addHighlight/AddHighlight.router"; +import {addHighlightRouter} from './addHighlight/AddHighlight.router'; /** * Router Definition diff --git a/src/models/twitch-highlight-marker/addHighlight/AddHighlight.router.ts b/src/models/twitch-highlight-marker/addHighlight/AddHighlight.router.ts index 7d3cc62..c593216 100644 --- a/src/models/twitch-highlight-marker/addHighlight/AddHighlight.router.ts +++ b/src/models/twitch-highlight-marker/addHighlight/AddHighlight.router.ts @@ -2,7 +2,7 @@ * Required External Modules and Interfaces */ import express, {Request, Response} from 'express'; -import * as AddHighlightService from "./addHighlights.service"; +import * as AddHighlightService from './addHighlights.service'; /** * Router Definition