Minor changes to IStore. Added another IStore interface for double keys. Added ChatterStore for chat's voices. Updated respective requests.

This commit is contained in:
Tom
2024-10-18 03:21:16 +00:00
parent 6a5c24dc2c
commit 3f3ba63554
9 changed files with 337 additions and 21 deletions

View File

@@ -42,9 +42,9 @@ namespace HermesSocketServer.Store
return null;
}
public IEnumerable<string> Get()
public IDictionary<string, string> Get()
{
return _voices.Values.ToImmutableList();
return _voices.ToImmutableDictionary();
}
public async Task Load()