Files
unpkg/server/actions/showPublicKey.js
2018-07-27 05:39:57 -07:00

8 lines
159 B
JavaScript

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