This commit is contained in:
2025-03-25 16:35:39 +08:00
parent 2b456dc17e
commit 9463635e03
66 changed files with 864 additions and 64 deletions

8
src/enum/MethodsENUM.js Normal file
View File

@@ -0,0 +1,8 @@
const MethodsENUM = {
GET: "GET",
POST: "POST",
PUT: "PUT",
DELETE: "DELETE",
}
export default MethodsENUM;