unpkg/server/actions/showPublicKey.js
2018-02-17 20:23:05 -08:00

8 lines
161 B
JavaScript

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