????
Your IP : 18.223.247.164
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DUPLICATE_SCHEDULER = exports.NO_SCHEDULER_FOUND = void 0;
const NO_SCHEDULER_FOUND = (schedulerName, name) => name
? `No ${schedulerName} was found with the given name (${name}). Check that you created one with a decorator or with the create API.`
: `No ${schedulerName} was found. Check your configuration.`;
exports.NO_SCHEDULER_FOUND = NO_SCHEDULER_FOUND;
const DUPLICATE_SCHEDULER = (schedulerName, name) => `${schedulerName} with the given name (${name}) already exists. Ignored.`;
exports.DUPLICATE_SCHEDULER = DUPLICATE_SCHEDULER;