Skip to content

Commit

Permalink
test in go 1.8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
zensh committed Jul 7, 2017
1 parent 735823f commit 206c373
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ language: go
go:
- 1.7
- 1.8
- 1.8.1
- 1.8.2
- 1.8.3
before_install:
- go get -t -v ./...
- go get github.com/mattn/goveralls
Expand Down
3 changes: 1 addition & 2 deletions memorystore.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ import (
"crypto/rand"
"crypto/sha256"
"encoding/hex"
"io"
"sync"
"time"

"io"

"github.com/go-http-utils/cookie"
)

Expand Down
1 change: 0 additions & 1 deletion memorystore_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import (
"net/http/httptest"
"sync"
"testing"

"time"

"github.com/go-http-utils/cookie"
Expand Down
3 changes: 3 additions & 0 deletions sessions.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ import (
"github.com/go-http-utils/cookie"
)

// Version is this package's version
const Version = "1.0.0"

// Store is an interface for custom session stores.
type Store interface {
// Load should load data from cookie and store, set it into session instance.
Expand Down

0 comments on commit 206c373

Please sign in to comment.