kura-s3
Version:
The FileSystem API abstraction library, AWS S3 Plugin
15 lines • 486 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.S3FileSystem = void 0;
const kura_1 = require("kura");
const S3DirectoryEntry_1 = require("./S3DirectoryEntry");
class S3FileSystem extends kura_1.AbstractFileSystem {
constructor(accessor) {
super(accessor);
}
createRoot(params) {
return new S3DirectoryEntry_1.S3DirectoryEntry(params);
}
}
exports.S3FileSystem = S3FileSystem;
//# sourceMappingURL=S3FileSystem.js.map