unpkg/modules/actions/showPublicKey.js

8 lines
159 B
JavaScript
Raw Normal View History

2018-07-27 12:39:57 +00:00
const secretKey = require("../secretKey");
2017-11-11 20:18:13 +00:00
function showPublicKey(req, res) {
2018-07-27 12:39:57 +00:00
res.send({ publicKey: secretKey.public });
2017-11-11 20:18:13 +00:00
}
2018-02-18 02:00:56 +00:00
module.exports = showPublicKey;