using HopFrame.Core.Services; namespace HopFrame.Testing.Services; public class AuthService : IHopFrameAuthHandler { public Task IsAuthenticatedAsync(string? policy) { return Task.FromResult(true); } public Task GetCurrentUserDisplayNameAsync() { return Task.FromResult("Leon Hoppe"); } }