mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 00:16:00 +00:00
17 lines
358 B
JavaScript
17 lines
358 B
JavaScript
const driver = require('./driver');
|
|
const {
|
|
formatProfilerEntry,
|
|
extractProfileTimestamp,
|
|
aggregateProfileChartEntry,
|
|
} = require('../frontend/profilerFunctions');
|
|
|
|
module.exports = {
|
|
packageName: 'dbgate-plugin-mongo',
|
|
drivers: [driver],
|
|
functions: {
|
|
formatProfilerEntry,
|
|
extractProfileTimestamp,
|
|
aggregateProfileChartEntry,
|
|
},
|
|
};
|