unpkg/modules/actions/showPublicKey.js
2018-07-31 10:20:24 -07:00

8 lines
159 B
JavaScript

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