mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 16:36:15 -04:00
9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
'use strict';
|
|
|
|
const measured = require('measured-core');
|
|
|
|
export const measuredCollection = measured.createCollection();
|
|
|
|
export const shutdown = async (hookName: string, context:any) => {
|
|
measuredCollection.end();
|
|
};
|