mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-26 11:01:07 +01:00
11 lines
127 B
Go
11 lines
127 B
Go
package auth
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type Provider interface {
|
|
TokenCookieName() string
|
|
CheckToken(r *http.Request) error
|
|
}
|