diff --git a/README.md b/README.md index 5aed9cb..fd13696 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # 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 your application: diff --git a/jwt.go b/jwt.go index c75a2e3..8366378 100644 --- a/jwt.go +++ b/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