mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 15:40:02 +00:00
9 lines
120 B
JavaScript
9 lines
120 B
JavaScript
|
const MethodEnum = {
|
||
|
Delete: 'DELETE',
|
||
|
Get: 'GET',
|
||
|
Post: 'POST',
|
||
|
Put: 'PUT',
|
||
|
};
|
||
|
|
||
|
export { MethodEnum };
|