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

12 lines
196 B
Go

package main
import (
"git.xdrm.io/go/aicra/middleware"
"net/http"
)
// Authentication middleware
func Inspect(req http.Request, scope *middleware.Scope) {
*scope = append(*scope, "admin")
}