Skip to content

Commit

Permalink
fix(structure): update cache provider folder to be named caches
Browse files Browse the repository at this point in the history
  • Loading branch information
atticusofsparta committed Feb 15, 2024
1 parent 2a0a765 commit 844c1aa
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/common/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
export * from './ArIO.js';
export * from './ContractStateProviders/index.js';
export * from './caches/index.js';
export * from './error.js';
export * from './logger.js';
2 changes: 1 addition & 1 deletion tests/ArIO.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ArIO } from '../src/common/ArIO.js';
import { ArNSRemoteCache } from '../src/common/ContractStateProviders/ArNSRemoteCache.js';
import { ArNSRemoteCache } from '../src/common/caches/ArNSRemoteCache.js';

describe('ArIO Client', () => {
const remoteCacheProvider = new ArNSRemoteCache({});
Expand Down
2 changes: 1 addition & 1 deletion tests/ArNSRemoteCache.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ArIO } from '../src/common/ArIO.js';
import { ArNSRemoteCache } from '../src/common/ContractStateProviders/ArNSRemoteCache.js';
import { ArNSRemoteCache } from '../src/common/caches/ArNSRemoteCache.js';

describe('ArIO Client', () => {
const remoteCacheProvider = new ArNSRemoteCache({});
Expand Down

0 comments on commit 844c1aa

Please sign in to comment.