8 lines
176 B
C#
8 lines
176 B
C#
using System.Net;
|
|
|
|
namespace SimpleHttpServer;
|
|
|
|
public interface IAuthorizer {
|
|
public abstract (bool auth, object? data) IsAuthenticated(HttpListenerContext contect);
|
|
}
|