using System.Net; namespace SimpleHttpServer.Internal; public sealed class DefaultAuthorizer : IAuthorizer { public (bool auth, object? data) IsAuthenticated(HttpListenerContext contect) => (true, null); }