From 41ee504a3bfe9b07b2d62ba5cc2e1314cabb4a63 Mon Sep 17 00:00:00 2001 From: QuaSoft Date: Tue, 6 Feb 2018 22:22:36 +0200 Subject: [PATCH] Add link to memstore implementation (#143) Adds a link to memstore, an in-memory implementation of `sessions.Store` for use in unit tests --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 10eb7f0..4b4f6ff 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,7 @@ Other implementations of the `sessions.Store` interface: * [github.com/michaeljs1990/sqlitestore](https://github.com/michaeljs1990/sqlitestore) - SQLite * [github.com/wader/gormstore](https://github.com/wader/gormstore) - GORM (MySQL, PostgreSQL, SQLite) * [github.com/gernest/qlstore](https://github.com/gernest/qlstore) - ql +* [github.com/quasoft/memstore](https://github.com/quasoft/memstore) - In-memory implementation for use in unit tests ## License