7 lines
262 B
Go
7 lines
262 B
Go
// Package jwt represents JSON Web Token for Go.
|
|
//
|
|
// Builder, all Signers and Verifiers are safe for use by multiple goroutines simultaneously.
|
|
//
|
|
// See [RFC 7519](https://tools.ietf.org/html/rfc7519) and see [jwt.io](https://jwt.io) for more.
|
|
//
|
|
package jwt
|