misc: noop storage adapter

Assists in testing and for my dumbass who somehow is incapable of
getting an S3 server to run locally.
This commit is contained in:
Roman Godmaire 2024-02-10 08:42:32 -05:00
parent 7f0d3f4b7e
commit f7465483a5

View file

@ -0,0 +1,9 @@
import type { ObjectStorage } from '.';
class ObjectStorageNoop implements ObjectStorage {
putObject = async (_key: string, _obj: Uint8Array) => {
return null;
};
}
export { ObjectStorageNoop };