[FEATURE] Initial FTP data

This commit is contained in:
Dunemask 2023-12-16 09:28:06 -07:00
parent 8ef46ac02f
commit 7348b07352
13 changed files with 330 additions and 204 deletions

View file

@ -0,0 +1,7 @@
import { Router, json as jsonMiddleware } from "express";
import { listFiles } from "../k8s/server-files.js";
const router = Router();
router.use(jsonMiddleware());
router.post("/list", listFiles);
export default router;