2019-06-03 09:32:43 +00:00
|
|
|
package arn
|
|
|
|
|
2019-11-18 05:01:13 +00:00
|
|
|
// SessionID represents a session ID.
|
|
|
|
type SessionID = ID
|
|
|
|
|
2019-06-03 09:32:43 +00:00
|
|
|
// Session stores session-related data.
|
2019-11-18 05:01:13 +00:00
|
|
|
type Session map[SessionID]interface{}
|