import GraphQL from "./graphql"; import Mqtt from "./mqtt"; import Rest from "./rest"; export default class ApiManager { protected graphql: GraphQL; protected mqtt: Mqtt; protected rest: Rest; constructor(config = {}) { this.graphql = new GraphQL(); this.mqtt = new Mqtt(); this.rest = new Rest(); } }