From 395ec5f3358ae70e7d7fca893730ea6d4647e61d Mon Sep 17 00:00:00 2001
From: Trevor Manz <trevor.j.manz@gmail.com>
Date: Mon, 8 Nov 2021 09:04:35 -0500
Subject: [PATCH] refactor: create storage dir

---
 src/{ => storage}/fsstore.ts   | 0
 src/{ => storage}/lru-store.ts | 0
 src/utils.ts                   | 2 +-
 3 files changed, 1 insertion(+), 1 deletion(-)
 rename src/{ => storage}/fsstore.ts (100%)
 rename src/{ => storage}/lru-store.ts (100%)

diff --git a/src/fsstore.ts b/src/storage/fsstore.ts
similarity index 100%
rename from src/fsstore.ts
rename to src/storage/fsstore.ts
diff --git a/src/lru-store.ts b/src/storage/lru-store.ts
similarity index 100%
rename from src/lru-store.ts
rename to src/storage/lru-store.ts
diff --git a/src/utils.ts b/src/utils.ts
index 4c7b39f7..2a40f3ec 100644
--- a/src/utils.ts
+++ b/src/utils.ts
@@ -2,7 +2,7 @@ import { ContainsArrayError, HTTPStore, openArray, openGroup, ZarrArray } from '
 import type { Group as ZarrGroup } from 'zarr';
 import type { AsyncStore, Store } from 'zarr/types/storage/types';
 import { Matrix4 } from '@math.gl/core/dist/esm';
-import { LRUCacheStore } from './lru-store';
+import { LRUCacheStore } from './storage/lru-store';
 
 export const MAX_CHANNELS = 6;