Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store interface { GetByID(uint) (*model.User, error) GetByEmail(string) (*model.User, error) GetByUsername(string) (*model.User, error) Create(*model.User) error Update(*model.User) error AddFollower(user *model.User, followerID uint) error RemoveFollower(user *model.User, followerID uint) error IsFollower(userID, followerID uint) (bool, error) }
Click to show internal directories.
Click to hide internal directories.