CSharpHttpServer/SimpleHttpServer/DefaultAuthorizer.cs
2023-11-30 17:31:19 +01:00

9 lines
206 B
C#

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