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