decentralized-internet
Version:
An NPM library of programs to create decentralized web and distributed computing projects
22 lines (16 loc) • 376 B
text/typescript
import config from "./configuration";
export default class Config {
protected config: any;
public constructor() {
this.config = config;
}
public getTtn(): any {
return this.config.mqtt;
}
public getData(): any {
return this.config.data;
}
public getMetaData(): any {
return this.config.getMetaData;
}
}