mirror of
https://github.com/HeyPuter/puter.git
synced 2026-05-04 00:20:45 +00:00
99d96edd9c
* feat: s3 fs in oss * feat: new endpoints in OSS * fix: name of fs extension * perf: signed uploads * fix: await socket events to align fs events * fix: default bucket names * fix: backend tests * fix: deps * fix: order
25 lines
505 B
JavaScript
25 lines
505 B
JavaScript
export default class {
|
|
constructor (delegate) {
|
|
this.delegate = delegate ?? null;
|
|
}
|
|
setDelegate (delegate) {
|
|
this.delegate = delegate;
|
|
}
|
|
|
|
init (...a) {
|
|
return this.delegate.init(...a);
|
|
}
|
|
upload (...a) {
|
|
return this.delegate.upload(...a);
|
|
}
|
|
copy (...a) {
|
|
return this.delegate.copy(...a);
|
|
}
|
|
delete (...a) {
|
|
return this.delegate.delete(...a);
|
|
}
|
|
read (...a) {
|
|
return this.delegate.read(...a);
|
|
}
|
|
}
|