Bez popisu

routes.go 318B

123456789101112131415161718192021
  1. package main
  2. import (
  3. "fmt"
  4. "html"
  5. "net/http"
  6. "./core/router"
  7. )
  8. //Routes rotas de acesso
  9. var Routes = router.Routes{
  10. router.Route{
  11. `\/(.*)`,
  12. func(w http.ResponseWriter, r *http.Request, vars []string) {
  13. fmt.Println(vars[0])
  14. fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))
  15. },
  16. },
  17. }