UNPKG

@cashfarm/tractor

Version:

A Hapi server with superpowers

19 lines 477 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Acknowledge response * * This response should be used for long runing commands where the result * will be eventually available at `resultUrl` * * @export * @class AckResponse */ class AckResponse { constructor(message, resultUrl) { this.message = message; this.resultUrl = resultUrl; } } exports.AckResponse = AckResponse; //# sourceMappingURL=ackResponse.js.map