mirror of
https://github.com/foomo/keel.git
synced 2025-10-16 12:35:34 +00:00
8 lines
101 B
Go
8 lines
101 B
Go
package middleware
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type TokenProvider func(r *http.Request) (string, error)
|