15 lines
308 B
TypeScript
15 lines
308 B
TypeScript
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;
|
|
}
|
|
}
|