Fix AutoDetect
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using System.Collections.Concurrent;
|
||||
|
||||
namespace MareSynchronosAuthService.Services.Discovery;
|
||||
|
||||
public interface IDiscoveryPresenceStore : IDisposable
|
||||
{
|
||||
void Publish(string uid, IEnumerable<string> hashes, string? displayName = null);
|
||||
(bool Found, string Token, string? DisplayName) TryMatchAndIssueToken(string requesterUid, string hash);
|
||||
bool ValidateToken(string token, out string targetUid);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user