Move Verifier method to pkg-level func to accept *jwtauth.JwtAuth

This commit is contained in:
Peter Kieltyka 2017-07-06 18:09:09 -04:00
parent a5d0d75313
commit 6444fb9aef
5 changed files with 24 additions and 7 deletions

15
.travis.yml Normal file
View file

@ -0,0 +1,15 @@
language: go
go:
- 1.7.x
- 1.8.x
- tip
install:
- go get -u golang.org/x/tools/cmd/goimports
script:
- go get -d -t ./...
- go test ./...
- >
goimports -d -e ./ | grep '.*' && { echo; echo "Aborting due to non-empty goimports output."; exit 1; } || :