diff options
Diffstat (limited to 'src/index.ts')
-rw-r--r-- | src/index.ts | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/index.ts b/src/index.ts index 385aecc..63c803c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,11 +1,10 @@ +import cookieParser from 'cookie-parser'; +import csurf from 'csurf'; import express, { Request, Response } from 'express'; - +import rateLimit from 'express-rate-limit'; +import helmet from 'helmet'; import path from 'path'; import { env } from 'process'; -import helmet from 'helmet'; -import csurf from 'csurf'; -import cookieParser from 'cookie-parser'; -import rateLimit from 'express-rate-limit'; import api from './routes/api'; const app = express(); |