20 lines
497 B
TypeScript
20 lines
497 B
TypeScript
import * as plugins from '../plugins.js';
|
|
import { Cloudly } from '../classes.cloudly.js';
|
|
|
|
/**
|
|
* the portion of Cloudflare responsible
|
|
*/
|
|
export class CloudflareConnector {
|
|
private cloudlyRef: Cloudly;
|
|
public cloudflare: plugins.cloudflare.CloudflareAccount;
|
|
|
|
constructor(cloudlyArg: Cloudly) {
|
|
this.cloudlyRef = cloudlyArg;
|
|
}
|
|
|
|
// init the instance
|
|
public async init() {
|
|
this.cloudflare = new plugins.cloudflare.CloudflareAccount(this.cloudlyRef.config.data.cfToken);
|
|
}
|
|
}
|