This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
|
package models
|
|
|
|
type Follow struct {
|
|
UserID int `db:"user_id"`
|
|
FollowingUserID *int `db:"following_user_id"`
|
|
FollowingProjectID *int `db:"following_project_id"`
|
|
}
|