Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SessionRepo ¶
type SessionRepo interface { GetLoginId(token string) (string, error) SetToken(loginId any, token string) error RemoveToken(token string) error GetToken(loginId any) ([]string, error) GetSession(loginId any, token string) (domain.SessionEntity, error) SetSession(entity domain.SessionEntity) error RemoveSession(loginId any, token string) error RenewTimeout(loginId any, token string) error }
Click to show internal directories.
Click to hide internal directories.