allow function endpoints to be used w/ any method

This commit is contained in:
uwaa 2024-11-14 02:30:55 +00:00
parent 4903b6320a
commit ba79856131

View file

@ -15,7 +15,7 @@ public class FuncEndpoint : RouterBase
Function = function; Function = function;
} }
public override HttpMethod Method => HttpMethod.GET; public override HttpMethod Method => HttpMethod.Any;
public override int Arguments => 0; public override int Arguments => 0;