Beginnings of Core Auth
This commit is contained in:
20
RelayCore/Services/APIAuthService.cs
Normal file
20
RelayCore/Services/APIAuthService.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using RelayCore.Endpoints;
|
||||
using SurrealDb.Net;
|
||||
|
||||
namespace RelayCore.Services;
|
||||
|
||||
public class APIAuthService(SurrealDbClient db)
|
||||
{
|
||||
private readonly SurrealDbClient _db = db;
|
||||
|
||||
|
||||
public async Task<object?> GetUsersAsync()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public async Task<object?> UserSigninAsync(AuthSignin request)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user