unpkg/server/actions/showPublicKey.js
MICHAEL JACKSON 3a309241da Prettify
2017-11-25 13:25:01 -08:00

8 lines
158 B
JavaScript

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