Skip to content

Commit

Permalink
fix: package names
Browse files Browse the repository at this point in the history
  • Loading branch information
lakhansamani committed Apr 14, 2020
1 parent ab3c334 commit d980cbe
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 11 deletions.
4 changes: 1 addition & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
"test": &test
docker:
- image: circleci/golang:latest
working_directory: /go/src/github.com/gorilla/sessions
working_directory: /go/src/github.com/appbaseio/sessions
steps: &steps
- checkout
- run: go version
Expand All @@ -20,7 +20,6 @@ jobs:
environment:
LATEST: true


"1.12":
<<: *test
docker:
Expand Down Expand Up @@ -51,7 +50,6 @@ jobs:
docker:
- image: circleci/golang:1.7


workflows:
version: 2
build:
Expand Down
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This is the official list of gorilla/sessions authors for copyright purposes.
# This is the official list of appbaseio/sessions authors for copyright purposes.
#
# Please keep the list sorted.

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# sessions

[![GoDoc](https://godoc.org/github.com/gorilla/sessions?status.svg)](https://godoc.org/github.com/gorilla/sessions) [![Build Status](https://travis-ci.org/gorilla/sessions.svg?branch=master)](https://travis-ci.org/gorilla/sessions)
[![Sourcegraph](https://sourcegraph.com/github.com/gorilla/sessions/-/badge.svg)](https://sourcegraph.com/github.com/gorilla/sessions?badge)
[![GoDoc](https://godoc.org/github.com/appbaseio/sessions?status.svg)](https://godoc.org/github.com/appbaseio/sessions) [![Build Status](https://travis-ci.org/appbaseio/sessions.svg?branch=master)](https://travis-ci.org/appbaseio/sessions)
[![Sourcegraph](https://sourcegraph.com/github.com/appbaseio/sessions/-/badge.svg)](https://sourcegraph.com/github.com/appbaseio/sessions?badge)

gorilla/sessions provides cookie and filesystem sessions and infrastructure for
appbaseio/sessions provides cookie and filesystem sessions and infrastructure for
custom session backends.

The key features are:
Expand All @@ -24,7 +24,7 @@ Let's start with an example that shows the sessions API in a nutshell:
```go
import (
"net/http"
"github.com/gorilla/sessions"
"github.com/appbaseio/sessions"
)

// Note: Don't store your key in your source code. Pass it via an
Expand Down
4 changes: 2 additions & 2 deletions doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Let's start with an example that shows the sessions API in a nutshell:
import (
"net/http"
"github.com/gorilla/sessions"
"github.com/appbaseio/sessions"
)
// Note: Don't store your key in your source code. Pass it via an
Expand Down Expand Up @@ -103,7 +103,7 @@ so it is easy to register new datatypes for storage in sessions:
import(
"encoding/gob"
"github.com/gorilla/sessions"
"github.com/appbaseio/sessions"
)
type Person struct {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/gorilla/sessions
module github.com/appbaseio/sessions

require github.com/gorilla/securecookie v1.1.1

0 comments on commit d980cbe

Please sign in to comment.