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