chrly/interfaces/auth.go
ErickSkrauch f120064fe3
Implemented API endpoint to update skin information
Added tests to jwt package
Reworked redis backend implementation
Skin repository now have methods to remove skins by user id or username
2018-01-23 18:43:37 +03:00

8 lines
102 B
Go

package interfaces
import "net/http"
type AuthChecker interface {
Check(req *http.Request) error
}