2024-06-20 17:00:58 +00:00
|
|
|
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;
|
|
|
|
}
|
2024-10-27 18:50:39 +00:00
|
|
|
}
|