unpkg/modules/actions/showPublicKey.js
2018-12-17 09:38:05 -08:00

8 lines
159 B
JavaScript

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