unpkg/modules/actions/showPublicKey.js

8 lines
159 B
JavaScript

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