Split out the Flashii interaction code into a separate library.
This commit is contained in:
parent
51f5c4c948
commit
2eba089a21
55 changed files with 769 additions and 552 deletions
SharpChatCommon/Auth
8
SharpChatCommon/Auth/AuthClient.cs
Normal file
8
SharpChatCommon/Auth/AuthClient.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
using System.Net;
|
||||
|
||||
namespace SharpChat.Auth {
|
||||
public interface AuthClient {
|
||||
Task<AuthResult> AuthVerifyAsync(IPAddress remoteAddr, string scheme, string token);
|
||||
Task AuthBumpUsersOnlineAsync(IEnumerable<(IPAddress remoteAddr, string userId)> entries);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue