SetUserSession sets the user session for given user identifier in form recipe:user_id
(userId, key, token string, expiration int64)
| 40 | type Provider interface { |
| 41 | // SetUserSession sets the user session for given user identifier in form recipe:user_id |
| 42 | SetUserSession(userId, key, token string, expiration int64) error |
| 43 | // GetUserSession returns the session token for given token |
| 44 | GetUserSession(userId, key string) (string, error) |
| 45 | // DeleteUserSession deletes the user session |
no outgoing calls