Rename package and update documentation

This commit is contained in:
Your Name 2018-11-23 20:10:42 +00:00
parent 272018cf22
commit cb19905ec5
4 changed files with 9 additions and 7 deletions

View File

@ -1,7 +1,9 @@
# pgstore
# pgstorex
A session store backend for [gorilla/sessions](http://www.gorillatoolkit.org/pkg/sessions) - [src](https://github.com/gorilla/sessions).
100% based on pgstore
## Installation
make get-deps
@ -23,13 +25,13 @@ import (
"net/http"
"time"
"github.com/antonlindstrom/pgstore"
"gitto.work/shortcut/pgstorex"
)
// ExampleHandler is an example that displays the usage of PGStore.
func ExampleHandler(w http.ResponseWriter, r *http.Request) {
// Fetch new store.
store, err := pgstore.NewPGStore("postgres://user:password@127.0.0.1:5432/database?sslmode=verify-full", []byte("secret-key"))
store, err := pgstorex.NewPGStore("postgres://user:password@127.0.0.1:5432/database?sslmode=verify-full", []byte("secret-key"))
if err != nil {
log.Fatalf(err.Error())
}

View File

@ -5,13 +5,13 @@ import (
"net/http"
"time"
"github.com/antonlindstrom/pgstore"
"gitto.work/shortcut/pgstorex"
)
// ExampleHandler is an example that displays the usage of PGStore.
func ExampleHandler(w http.ResponseWriter, r *http.Request) {
// Fetch new store.
store, err := pgstore.NewPGStore("postgres://user:password@127.0.0.1:5432/database?sslmode=verify-full", []byte("secret-key"))
store, err := pgstorex.NewPGStore("postgres://user:password@127.0.0.1:5432/database?sslmode=verify-full", []byte("secret-key"))
if err != nil {
log.Fatalf(err.Error())
}

View File

@ -1,4 +1,4 @@
package pgstore
package pgstorex
import (
"database/sql"

View File

@ -1,4 +1,4 @@
package pgstore
package pgstorex
import (
"encoding/base64"