9 lines
115 B
JavaScript
9 lines
115 B
JavaScript
const Method = {
|
|
GET: 'GET',
|
|
POST: 'POST',
|
|
PUT: 'PUT',
|
|
DELETE: 'DELETE',
|
|
}
|
|
|
|
export default Method;
|