mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 04:56:00 +00:00
13 lines
181 B
JavaScript
13 lines
181 B
JavaScript
const finalizers = [];
|
|
|
|
module.exports = {
|
|
async run() {
|
|
for (const func of finalizers) {
|
|
await func();
|
|
}
|
|
},
|
|
register(func) {
|
|
finalizers.push(func);
|
|
},
|
|
};
|