Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Authenticator ¶
type Authenticator interface { // 認証する。 Verify(params ...interface{}) error }
認証機構。
func GenerateAuthenticator ¶
func GenerateAuthenticator(alg string, params ...interface{}) (Authenticator, error)
type Db ¶
type Db interface { // 取得。 Get(id string) (Element, error) // ログイン名で取得。 GetByName(name string) (Element, error) }
アカウント情報の格納庫。
func NewMemoryDb ¶
Click to show internal directories.
Click to hide internal directories.