Skip to content

Commit

Permalink
removing JWT stuff for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Zach Abrahamson committed Jul 18, 2016
1 parent ea6b234 commit 99669f8
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions box.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ import (
"net/url"
"strconv"
"time"

"github.com/dgrijalva/jwt-go"
)

type Config struct {
Expand All @@ -18,11 +16,10 @@ type Config struct {
}

type ClientConfig struct {
Token string `json:"token"`
UrlBase string `json:"url_base"`
ClientID string `json:"client_id"`
ClientSecret string `json:"client_secret"`
JWTCustomClaims JWTCustomClaims `json:"jwt_custom_claims"`
Token string `json:"token"`
UrlBase string `json:"url_base"`
ClientID string `json:"client_id"`
ClientSecret string `json:"client_secret"`
}

type EventsConfig struct {
Expand All @@ -38,7 +35,6 @@ type JWTCustomClaims struct {
Jti string `json:"jti"`
Exp int64 `json:"exp"`
KeyID string `json:"key_id"`
jwt.StandardClaims
}

type Client struct {
Expand Down

0 comments on commit 99669f8

Please sign in to comment.