mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
9 lines
350 B
JavaScript
9 lines
350 B
JavaScript
import exprs from 'express';
|
|
const { Router } = exprs;
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
|
import { signMessage, verifyMessage } from '../../controllers/lnd/message.js';
|
|
const router = Router();
|
|
router.post('/sign', isAuthenticated, signMessage);
|
|
router.post('/verify', isAuthenticated, verifyMessage);
|
|
export default router;
|