Files
xl-root/src/api/Method.js
2025-04-19 15:28:32 +08:00

9 lines
115 B
JavaScript

const Method = {
GET: 'GET',
POST: 'POST',
PUT: 'PUT',
DELETE: 'DELETE',
}
export default Method;