9 lines
206 B
C#
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);
|
|
}
|