20 lines
412 B
C#
20 lines
412 B
C#
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();
|
|
}
|
|
} |