about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Classes/LocalStorageProviderService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MatrixRoomUtils.Web/Classes/LocalStorageProviderService.cs')
-rw-r--r--MatrixRoomUtils.Web/Classes/LocalStorageProviderService.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MatrixRoomUtils.Web/Classes/LocalStorageProviderService.cs b/MatrixRoomUtils.Web/Classes/LocalStorageProviderService.cs
index 256c43d..02d691a 100644
--- a/MatrixRoomUtils.Web/Classes/LocalStorageProviderService.cs
+++ b/MatrixRoomUtils.Web/Classes/LocalStorageProviderService.cs
@@ -1,7 +1,7 @@
 using Blazored.LocalStorage;
-using MatrixRoomUtils.Core.Interfaces.Services;
+using LibMatrix.Interfaces.Services;
 
-namespace MatrixRoomUtils.Web.Classes; 
+namespace MatrixRoomUtils.Web.Classes;
 
 public class LocalStorageProviderService : IStorageProvider {
     private readonly ILocalStorageService _localStorageService;
@@ -23,4 +23,4 @@ public class LocalStorageProviderService : IStorageProvider {
     async Task<List<string>> IStorageProvider.GetAllKeysAsync() => (await _localStorageService.KeysAsync()).ToList();
 
     async Task IStorageProvider.DeleteObjectAsync(string key) => await _localStorageService.RemoveItemAsync(key);
-}
\ No newline at end of file
+}