feat: Add pedigree routes for COI calculation, direct relation checks, and ancestral/descendant trees.

This commit is contained in:
jason
2026-03-11 14:48:59 -05:00
parent 7b941c9a9a
commit 58b53c981e
3 changed files with 42 additions and 3 deletions

8
server/test_express.js Normal file
View File

@@ -0,0 +1,8 @@
const express = require('express');
const router = express.Router();
router.post(['/a', '/b'], (req, res) => {
res.send('ok');
});
console.log('Started successfully');