mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-05 21:20:25 +00:00
8 lines
269 B
JavaScript
8 lines
269 B
JavaScript
|
import exprs from 'express';
|
||
|
const { Router } = exprs;
|
||
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
||
|
import { getInfo } from '../../controllers/eclair/getInfo.js';
|
||
|
const router = Router();
|
||
|
router.get('/', isAuthenticated, getInfo);
|
||
|
export default router;
|