backup push before migration to BaseStruct

This commit is contained in:
ION606
2023-04-07 19:13:15 -04:00
parent 1a048a01db
commit e6b32cc115
15 changed files with 248 additions and 68 deletions
+6
View File
@@ -0,0 +1,6 @@
export class BaseStruct {
/** @type {import('./client/client.js').Client} */
client;
constructor(c) { this.client = c; }
}