Adding godoc badge and package comment
This commit is contained in:
parent
83f2908a95
commit
774185ba9e
2 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
|||
# jwt
|
||||
|
||||
[](https://godoc.org/github.com/thermokarst/jwt)
|
||||
|
||||
A simple, opinionated Go net/http middleware for integrating JSON Web Tokens into
|
||||
your application:
|
||||
|
||||
|
|
6
jwt.go
6
jwt.go
|
@ -1,3 +1,5 @@
|
|||
// Package jwt implements a simple, opinionated net/http-compatible middleware for
|
||||
// integrating JSON Web Tokens (JWT).
|
||||
package jwt
|
||||
|
||||
import (
|
||||
|
@ -44,8 +46,8 @@ type AuthFunc func(string, string) error
|
|||
// ClaimsFunc is a type for delegating claims generation to the client-code.
|
||||
type ClaimsFunc func(string) (map[string]interface{}, error)
|
||||
|
||||
// VerifyClaimsFunc is a type for for processing and validating JWT claims
|
||||
// on one or more route's in the client-code.
|
||||
// VerifyClaimsFunc is a type for processing and validating JWT claims on one
|
||||
// or more route's in the client-code.
|
||||
type VerifyClaimsFunc func([]byte) error
|
||||
|
||||
// Middleware is where we store all the specifics related to the client's
|
||||
|
|
Loading…
Add table
Reference in a new issue