1
0
Fork 0

bulk: changing experiments structure and how i use it.

This commit is contained in:
Strix 2025-06-27 16:23:34 +02:00
parent 20d4c9d3b7
commit 521c5b0063
20 changed files with 802 additions and 0 deletions

14
web/routes/share.js Normal file
View file

@ -0,0 +1,14 @@
const { Router } = require("express");
let cache = {};
module.exports.id = 'tds'; // temp data share
module.exports.router = Router();
module.exports.router.get("/:share_id", (req, res) => {
res.send(1);
});
module.exports.router.post("/:share_id", (req, res) => {
res.send(2);
})