Initial Pi code for public lookup api

This commit is contained in:
Kostas Drakontidis
2026-05-13 23:27:55 +03:00
parent bcc3e97c80
commit 97712364ca
15 changed files with 3337 additions and 0 deletions
@@ -0,0 +1,8 @@
import express from "express";
import { check } from "./lookup.controller.js";
const router = express.Router();
router.get("/check/:uuid", check);
export default router;