Adding godoc badge and package comment

This commit is contained in:
Matthew Dillon 2015-04-21 11:11:25 -08:00
parent 83f2908a95
commit 774185ba9e
2 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,7 @@
# jwt # jwt
[![GoDoc](https://godoc.org/github.com/thermokarst/jwt?status.svg)](https://godoc.org/github.com/thermokarst/jwt)
A simple, opinionated Go net/http middleware for integrating JSON Web Tokens into A simple, opinionated Go net/http middleware for integrating JSON Web Tokens into
your application: your application:

6
jwt.go
View file

@ -1,3 +1,5 @@
// Package jwt implements a simple, opinionated net/http-compatible middleware for
// integrating JSON Web Tokens (JWT).
package jwt package jwt
import ( import (
@ -44,8 +46,8 @@ type AuthFunc func(string, string) error
// ClaimsFunc is a type for delegating claims generation to the client-code. // ClaimsFunc is a type for delegating claims generation to the client-code.
type ClaimsFunc func(string) (map[string]interface{}, error) type ClaimsFunc func(string) (map[string]interface{}, error)
// VerifyClaimsFunc is a type for for processing and validating JWT claims // VerifyClaimsFunc is a type for processing and validating JWT claims on one
// on one or more route's in the client-code. // or more route's in the client-code.
type VerifyClaimsFunc func([]byte) error type VerifyClaimsFunc func([]byte) error
// Middleware is where we store all the specifics related to the client's // Middleware is where we store all the specifics related to the client's