Files
Relay/RelayCore/Services/APIAuthService.cs
2026-04-30 19:08:37 -04:00

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();
}
}