1
0
mirror of https://github.com/volatiletech/authboss.git synced 2025-01-08 04:03:53 +02:00
authboss/client_storer.go
Aaron a2ffe4f7c4 Add many new files and types.
- Add context.
- Add handler type.
- Add new storers for client storage and sessions.
- Add start of remember module.
2015-01-10 22:54:31 -08:00

9 lines
216 B
Go

package authboss
// ClientStorer should be able to store values on the clients machine. This is
// usually going to be a cookie store.
type ClientStorer interface {
Put(key, value string)
Get(key string) string
}