Files
Harun CAN 1775ac1aa1
Backend Deploy 🚀 / build-and-deploy (push) Has been cancelled
main
2026-04-30 17:12:18 +02:00

4 lines
161 B
JavaScript

const jwt = require('jsonwebtoken');
const token = jwt.sign({ sub: 'user_id_here' }, 'ContentGen_SuperSecretKey_2026', { expiresIn: '1h' });
console.log(token);