mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-26 00:29:11 +01:00
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
|
const { version } = require('../package.json');
|
||
|
|
||
|
const CLI_EPILOGUE = `Documentation: https://docs.usebruno.com (v${version})`;
|
||
|
const CLI_VERSION = version;
|
||
|
|
||
|
module.exports = {
|
||
|
CLI_EPILOGUE,
|
||
|
CLI_VERSION
|
||
|
};
|