using RelayCore.Endpoints; using SurrealDb.Net; namespace RelayCore.Services; public class APIAuthService(SurrealDbClient db) { private readonly SurrealDbClient _db = db; public async Task GetUsersAsync() { throw new NotImplementedException(); } public async Task UserSigninAsync(AuthSignin request) { throw new NotImplementedException(); } }