reservease.consumer
Version:
This package allows you to create an amqplib consumer and producer.
13 lines (12 loc) • 366 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InternalApiResponse = void 0;
class InternalApiResponse {
constructor(ok, data, message, other) {
this.ok = ok;
this.data = data;
this.message = message;
this.other = other;
}
}
exports.InternalApiResponse = InternalApiResponse;