Skip to content

Commit 3ccb2da

Browse files
committed
Changed chronos.use to module.exports in chronos-config-js
1 parent 1693979 commit 3ccb2da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
require('dotenv').config();
2-
const chronos = require('@chronosmicro/tracker');
32

4-
chronos.use({
3+
module.exports = {
54
microservice: 'reverse-proxy',
65
interval: 2000,
76
// dockerized: true,ß
7+
mode: 'microservices',
88
database: {
99
connection: 'gRPC',
1010
type: 'MongoDB',
1111
URI: process.env.CHRONOS_URI,
1212
},
1313
notifications: [],
14-
});
14+
};

0 commit comments

Comments
 (0)