ALL_METHODS renamed to ANY_METHODS

This commit is contained in:
LuckyLaszlo
2022-08-05 23:01:06 +02:00
parent 914d4cb0c0
commit 79bdc1ecbf
4 changed files with 11 additions and 11 deletions

View File

@@ -17,7 +17,7 @@
// GET = 0b00000001,
// POST = 0b00000010,
// DELETE = 0b00000100,
// ALL_METHODS = 0b11111111,
// ANY_METHODS = 0b11111111,
// };
enum http_method
@@ -26,7 +26,7 @@ enum http_method
GET = 1 << 0,
POST = 1 << 1,
DELETE = 1 << 2,
ALL_METHODS = 0b11111111,
ANY_METHODS = 0b11111111,
};
std::vector<std::string> split(std::string input, char delimiter);