namespace WorkTracker.Services.Auth; public interface IAuthService { Task EnsureSeedUserAsync(CancellationToken cancellationToken); Task ValidateCredentialsAsync(string email, string password, CancellationToken cancellationToken); }