UNPKG

pddl-planning-service-client

Version:
19 lines 670 B
/* * Copyright (c) Jan Dolejsi 2022. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.PackagedPlanners = void 0; const httpUtils_1 = require("./httpUtils"); /** See https://github.com/AI-Planning/planning-as-a-service/issues/32 */ class PackagedPlanners { constructor(packageUrl) { this.packageUrl = packageUrl; } async getManifests() { return (0, httpUtils_1.getJson)(this.packageUrl); } } exports.PackagedPlanners = PackagedPlanners; //# sourceMappingURL=PackagedPlanners.js.map