12345678910111213141516171819202122232425 |
- package main
- import (
- "log"
- "net/http"
- )
- func home(w http.ResponseWriter, r *http.Request) {
- w.Write([]byte("Olá Mundo. "))
- }
- func usuarios(w http.ResponseWriter, r *http.Request) {
- w.Write([]byte("Bem vindo a rota de usuários. "))
- }
- func main() {
-
-
- http.HandleFunc("/home", home)
-
- http.HandleFunc("/usuarios", usuarios)
-
- log.Fatal(http.ListenAndServe(":5000", nil))
- }
|