This website works better with JavaScript
Página Principal
Explorar
Ajuda
Iniciar Sessão
archive
/
MusareReact
mirror de
https://github.com/Musare/MusareReact
Vigiar
2
Colocar Estrela
0
Fork
0
Ficheiros
Problemas
0
Wiki
Árvore:
9c2179a24f
Ramos
Etiquetas
master
MusareReact
/
backend
/
logic
/
cache
/
schemas
/
userSession.js
userSession.js
103 B
Histórico
Em bruto
1
2
3
4
5
6
7
8
'use strict';
module.exports = (userId) => {
return {
userId: userId,
created: Date.now()
};
};