1
Fork 0

Define new request method constants

This commit is contained in:
Drew DeVault 2024-03-04 11:23:13 +01:00
parent a8da673321
commit 9d14e36566

View file

@ -8,6 +8,12 @@ export def POST: str = "POST";
export def PUT: str = "PUT";
// HTTP "DELETE" method.
export def DELETE: str = "DELETE";
// HTTP "OPTIONS" method.
export def OPTIONS: str = "OPTIONS";
// HTTP "PATCH" method.
export def PATCH: str = "PATCH";
// HTTP "CONNECT" method.
export def CONNECT: str = "CONNECT";
// HTTP "Continue" response status (100).
export def STATUS_CONTINUE: uint = 100;