@girin/framework
Version:
Core modules for Girin: GraphQL server framework
14 lines • 539 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const environment_1 = require("@girin/environment");
class ObjectStorage extends environment_1.Module {
get label() { return 'ObjectStorage'; }
}
exports.ObjectStorage = ObjectStorage;
class StorageObjectNotFoundError extends Error {
constructor(objectId) {
super(`StorageObjectNotFoundError: no file matched with id ${objectId}`);
}
}
exports.StorageObjectNotFoundError = StorageObjectNotFoundError;
//# sourceMappingURL=ObjectStorage.js.map