mirror of
https://github.com/directus/directus.git
synced 2026-01-26 17:07:58 -05:00
9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
import { Router } from 'express';
|
|
|
|
const router = Router();
|
|
|
|
router.get('/ping', (req, res) => res.send('pong'));
|
|
router.get('/info', (req, res) => res.json({ data: process.versions }));
|
|
|
|
export default router;
|