瀏覽代碼

fix typos

tags/v0.9.0
jimzhan 10 年之前
父節點
當前提交
959570a4c5
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      README.md

+ 2
- 2
README.md 查看文件

app.Use(func(next http.Handler) http.Handler { app.Use(func(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
log.Printf("Custom Middleware Module Started") log.Printf("Custom Middleware Module Started")
next.ServeHTTP(writer, request)
next.ServeHTTP(w, r)
log.Printf("Custom Middleware Module Ended") log.Printf("Custom Middleware Module Ended")
}) })
}) })
user.Use(func(next http.Handler) http.Handler { user.Use(func(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
log.Printf("this is a protected page") log.Printf("this is a protected page")
next.ServeHTTP(writer, request)
next.ServeHTTP(w, r)
}) })
}) })
``` ```

Loading…
取消
儲存