http: allow Any method on static endpoint

This commit is contained in:
uwaa 2025-01-19 01:26:42 +00:00
parent a9f7dad63e
commit 9d99c2a9c8

View file

@ -9,7 +9,7 @@ public class StaticEndpoint : RouterBase
Response = response; Response = response;
} }
public override HttpMethod Method => HttpMethod.GET; public override HttpMethod Method => HttpMethod.Any;
public override int Arguments => 0; public override int Arguments => 0;