From fb66bbca33e6d7c1eacc38599c3eb7d35d9e0b1b Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Mon, 14 Feb 2022 20:44:14 -0600 Subject: organize imports Signed-off-by: Matt Strapp --- src/index.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/index.ts') 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(); -- cgit v1.2.3