Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Account ¶
type Account struct {
// contains filtered or unexported fields
}
アカウント情報。
func (*Account) MarshalJSON ¶
{ "at_tag": <アクセストークンタグ> }
または、
{ "iss": <属す ID プロバイダの ID>, "sub": <アカウント ID>, }
func (*Account) UnmarshalJSON ¶
type Db ¶
type Db interface { // 取得。 GetByParams(toTa string, acnts map[string]*Account) (*Element, error) // 保存。 // exp: 保存期限。この期間以降は Get できなくて良い。 Save(elem *Element, exp time.Time) error // 削除。 Delete(elem *Element) error }
セッションの格納庫。
func NewMemoryDb ¶
func NewMemoryDb() Db
Click to show internal directories.
Click to hide internal directories.