unpkg/modules/actions/showPublicKey.js

6 lines
137 B
JavaScript
Raw Normal View History

2019-01-06 02:03:10 +00:00
import { secretKey } from '../config';
2017-11-11 20:18:13 +00:00
2019-01-06 00:50:05 +00:00
export default 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
}