mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-25 16:18:56 +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
|
|
};
|