Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 9, 2020 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/b4155da2096d1052673d4bd04b2f88e9 to your computer and use it in GitHub Desktop.
Save parzibyte/b4155da2096d1052673d4bd04b2f88e9 to your computer and use it in GitHub Desktop.
const HTTP = {
"post": (ruta, datos) => {
// Magia aquí
},
"put": (ruta, datos) => {
// Magia aquí
},
"get": (ruta) => {
// Magia aquí
},
"delete": (ruta)=> {
// Magia aquí
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment