Added README

This commit is contained in:
2026-03-09 04:19:36 +04:00
parent da090627ff
commit 0e445dd586
2 changed files with 58 additions and 1 deletions
@@ -16,7 +16,7 @@ public class RedisStateStorage(IConnectionMultiplexer redis) : IStateStorage
}
/// <inheritdoc/>
public async Task<T?> GetAsync<T>(string key, CancellationToken cancellationToken) where T : default
public async Task<T?> GetAsync<T>(string key, CancellationToken cancellationToken)
{
RedisValue json = await _db.StringGetAsync(key);
string? jsonStr = json;