fix(core): update

This commit is contained in:
2024-06-13 10:07:53 +02:00
parent a6e3a7f5fe
commit 1983c64b77
5 changed files with 619 additions and 256 deletions

View File

@ -1,5 +1,6 @@
import type { Cloudly } from '../classes.cloudly.js';
import * as plugins from '../plugins.js';
import { Service } from './classes.service.js';
export class ServiceManager {
public typedrouter = new plugins.typedrequest.TypedRouter();
@ -10,4 +11,8 @@ export class ServiceManager {
}
public CService = plugins.smartdata.setDefaultManagerForDoc(this, Service);
constructor(cloudlyRef: Cloudly) {
this.cloudlyRef = cloudlyRef;
}
}