Discord bot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

10 regels
121 B

  1. enum Method {
  2. GET = 'GET',
  3. POST = 'POST',
  4. PUT = 'PUT',
  5. PATCH = 'PATCH',
  6. DELETE = 'DELETE',
  7. }
  8. export default Method