mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 08:26:01 +00:00
using xlsx lib instead of exceljs, export excel files
This commit is contained in:
12
packages/api/src/shell/finalizer.js
Normal file
12
packages/api/src/shell/finalizer.js
Normal file
@@ -0,0 +1,12 @@
|
||||
const finalizers = [];
|
||||
|
||||
module.exports = {
|
||||
async run() {
|
||||
for (const func of finalizers) {
|
||||
await func();
|
||||
}
|
||||
},
|
||||
register(func) {
|
||||
finalizers.push(func);
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user