zipy-test-cli
Version:
CLI for Zipyai
12 lines (11 loc) • 341 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class Constant {
}
Constant.EXECUTING = "EXECUTING";
Constant.ERROR = "ERROR";
Constant.DONE = "DONE";
// Regex Pattern
Constant.API_KEY_REGEX = new RegExp("^[a-zA-Z0-9]{8}$");
Constant.AUTH_KEY_REGEX = new RegExp("^[a-zA-Z0-9]{32}$");
exports.default = Constant;