about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core/Services/TieredStorageService.cs
blob: f6beddded0506ec1af5305c739655225fbf001db (plain) (blame)
1
2
3
4
5
6
7
8
9
using MatrixRoomUtils.Core.Interfaces.Services;

namespace MatrixRoomUtils.Core.Services; 

public class TieredStorageService {
    public TieredStorageService(IStorageProvider cacheStorageProvider, IStorageProvider dataStorageProvider) {
        
    }
}