Documentation ¶
Overview ¶
Package auth provides authentication related functions.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Auth ¶
type Auth interface { // ParseToken トークン文字列をパースしてセッション情報を返す。 ParseToken(tokenString string, now time.Time) (*session.Session, error) // NewSessionToken セッション ID とトークン文字列を生成する。 NewSessionToken(clientType session.ClientType, clientID string, now time.Time) (string, string, error) }
Auth 認証関連の機能を提供するインターフェース。
Click to show internal directories.
Click to hide internal directories.