unpkg/server/actions/showPublicKey.js

8 lines
158 B
JavaScript
Raw Normal View History

2017-11-11 20:18:13 +00:00
const AuthAPI = require('../AuthAPI')
function showPublicKey(req, res) {
2017-11-14 05:33:04 +00:00
res.send({ publicKey: AuthAPI.getPublicKey() })
2017-11-11 20:18:13 +00:00
}
module.exports = showPublicKey