diff options
Diffstat (limited to '')
-rw-r--r-- | src/routes/api.ts | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/routes/api.ts b/src/routes/api.ts index ab0ff26..c3518d6 100644 --- a/src/routes/api.ts +++ b/src/routes/api.ts @@ -1,13 +1,11 @@ -import express, { Request, Response } from 'express'; -// Middleware for security -import csurf from 'csurf'; +import { spawn } from 'child_process'; import cookieParser from 'cookie-parser'; +import csurf from 'csurf'; +import express, { Request, Response } from 'express'; import fileUpload, { UploadedFile } from 'express-fileupload'; -// For executing the python scripts -import { access, stat } from 'fs/promises'; import { Stats } from 'fs'; +import { access, stat } from 'fs/promises'; import { quote } from 'shell-quote'; -import { spawn } from 'child_process'; const api = express.Router(); |