Skip to content
This repository has been archived by the owner on Oct 17, 2022. It is now read-only.

Commit

Permalink
added brand
Browse files Browse the repository at this point in the history
  • Loading branch information
tycrek committed Jul 2, 2021
1 parent eb49d27 commit 7a4b9c4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions router.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ if (require.main === module) {
process.exit(1);
}

const { name, version } = require('./package.json');
/* const fs = require('fs-extra');
const fetch = require('node-fetch'); */
const express = require('express');
Expand All @@ -11,6 +12,7 @@ const router = express.Router();
router.all('/', (_, res) => res.send('Coming soon!'));

module.exports = {
brand: `${name} v${version}`,
enabled: true,
endpoint: '/dashboard',
router
Expand Down

0 comments on commit 7a4b9c4

Please sign in to comment.