mirror of
https://github.com/volatiletech/authboss.git
synced 2025-01-08 04:03:53 +02:00
a2ffe4f7c4
- Add context. - Add handler type. - Add new storers for client storage and sessions. - Add start of remember module.
9 lines
216 B
Go
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
|
|
}
|