@macrix/pct-cmd
Version:
Package provide communication layer to ProconTel web infrastructure
11 lines • 430 B
JavaScript
import { EndpointConnection } from ".";
var EndpointConnectionFactory = /** @class */ (function () {
function EndpointConnectionFactory() {
}
EndpointConnectionFactory.prototype.create = function (baseUrl) {
return new EndpointConnection(baseUrl + '/hubs/commands/');
};
return EndpointConnectionFactory;
}());
export { EndpointConnectionFactory };
//# sourceMappingURL=EndpointConnectionFactory.js.map