unpkg/server/actions/showPublicKey.js
2017-11-13 21:33:04 -08:00

8 lines
158 B
JavaScript

const AuthAPI = require('../AuthAPI')
function showPublicKey(req, res) {
res.send({ publicKey: AuthAPI.getPublicKey() })
}
module.exports = showPublicKey