Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type QueryResult ¶
type QueryResult struct { Result interface{} Error error }
type UserAuthQuery ¶
type UserAuthQuery interface {
FindByUserID(userUID uuid.UUID) <-chan QueryResult
}
type UserEventQuery ¶
type UserEventQuery interface {
FindAllByID(userUID uuid.UUID) <-chan QueryResult
}
type UserReadQuery ¶
type UserReadQuery interface { FindByID(userUID uuid.UUID) <-chan QueryResult FindByUsername(username string) <-chan QueryResult FindByUsernameAndPassword(username, password string) <-chan QueryResult }
Click to show internal directories.
Click to hide internal directories.