Beginnings of Core Auth

This commit is contained in:
2026-04-30 19:08:37 -04:00
parent dd1aa45f6e
commit 33eee17c43
4 changed files with 98 additions and 10 deletions

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