alioss-mcp
Version:
为AI编码工具提供阿里云OSS访问能力的Model Context Protocol服务器
22 lines • 535 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Logger = void 0;
class Logger {
static log = (...args) => {
console.log(...args);
};
static error = (...args) => {
console.error(...args);
};
static warn = (...args) => {
console.warn(...args);
};
static info = (...args) => {
console.info(...args);
};
static debug = (...args) => {
console.debug(...args);
};
}
exports.Logger = Logger;
//# sourceMappingURL=logger.js.map