Fixing quotation marks
This commit is contained in:
parent
8295deaf6a
commit
66c7b539b3
6
app.ts
6
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();
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user