@sauce-api/core
Version:
Sauce API core functionality
38 lines (37 loc) • 776 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Rocket = void 0;
const chalk_1 = require("chalk");
const Logger_1 = require("./Logger");
class Rocket {
constructor(config) {
this.config = config;
}
launch() {
return (0, Logger_1.log)(this.config, "debug", `${(0, chalk_1.green)(`
^
/ \\
/___\\
|= =|
| S |
| A |
| U |
| C |
| E |
/|##!##|\\
/ |##!##| \\
/ |##!##| \\
| / ${(0, chalk_1.yellow)("( | )")} \\ |
| / ${(0, chalk_1.yellow)("( | )")} \\ |
|/ ${(0, chalk_1.yellow)("( | )")} \\|`)}${(0, chalk_1.yellow)(`
(( ))
(( : ))
(( : ))
(( ))
(( ))
( )
.
`)}`);
}
}
exports.Rocket = Rocket;