mirror of
https://github.com/elyby/chrly.git
synced 2024-11-17 02:32:59 +05:30
8 lines
102 B
Go
8 lines
102 B
Go
|
package interfaces
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
type AuthChecker interface {
|
||
|
Check(req *http.Request) error
|
||
|
}
|