tiny-url-ex/middleware/1-auth/main.go

12 lines
192 B
Go
Raw Normal View History

2018-07-07 21:09:19 +00:00
package main
import (
"git.xdrm.io/go/aicra/middleware"
"net/http"
)
// Authentication middleware
func Inspect(req http.Request, scope middleware.Scope){
scope = append(scope, "user");
}