fix(core): update

This commit is contained in:
2024-06-20 19:00:58 +02:00
parent cdbab26008
commit a7ee92cde9
11 changed files with 1273 additions and 2667 deletions

View File

@@ -0,0 +1,14 @@
import type { Cloudly } from '../classes.cloudly.js';
import * as plugins from '../plugins.js';
export class CertManager {
public cloudlyRef: Cloudly;
public get db() {
return this.cloudlyRef.mongodbConnector.smartdataDb;
}
constructor(cloudly: Cloudly) {
this.cloudlyRef = cloudly;
}
}