mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-15 18:13:00 +00:00
12 lines
353 B
TypeScript
12 lines
353 B
TypeScript
|
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;
|