mirror of
https://github.com/elyby/chrly.git
synced 2024-11-16 18:22:58 +05:30
f120064fe3
Added tests to jwt package Reworked redis backend implementation Skin repository now have methods to remove skins by user id or username
8 lines
102 B
Go
8 lines
102 B
Go
package interfaces
|
|
|
|
import "net/http"
|
|
|
|
type AuthChecker interface {
|
|
Check(req *http.Request) error
|
|
}
|