Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 30, 2019 21:36
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/b335b2c3ccb49040f3ed7455bf6794a1 to your computer and use it in GitHub Desktop.
Save parzibyte/b335b2c3ccb49040f3ed7455bf6794a1 to your computer and use it in GitHub Desktop.
enrutador.HandleFunc("/usuarios", obtenerUsuarios).Methods("GET")
enrutador.HandleFunc("/usuario/{id}", obtenerUsuarioPorId).Methods("GET")
enrutador.HandleFunc("/usuario", agregarUsuario).Methods("POST")
enrutador.HandleFunc("/usuario", actualizarUsuario).Methods("PUT")
enrutador.HandleFunc("/usuario/{id}", eliminarUsuario).Methods("DELETE")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment