mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
10 lines
280 B
C#
10 lines
280 B
C#
|
using Wabbajack.DTOs.Vfs;
|
|||
|
using Wabbajack.Hashing.xxHash64;
|
|||
|
|
|||
|
namespace Wabbajack.VFS.Interfaces;
|
|||
|
|
|||
|
public interface IVfsCache
|
|||
|
{
|
|||
|
public Task<IndexedVirtualFile?> Get(Hash hash, CancellationToken token);
|
|||
|
public Task Put(IndexedVirtualFile file, CancellationToken token);
|
|||
|
}
|