Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Channel ¶
type Channel struct {
Id int `db:"id"`
ChannelId int `db:"channelId"`
Username sql.NullString `db:"username"`
Description sql.NullString `db:"description"`
MemberCount int `db:"memberCount"`
CreatedAt string `db:"createdAt"`
UpdatedAt string `db:"updatedAt"`
}
type ChannelHasMember ¶ added in v1.1.0
type Member ¶ added in v1.1.0
type Member struct {
Id int `db:"id"`
UserId int `db:"userId"`
Username sql.NullString `db:"username"`
FirstName sql.NullString `db:"first_name"`
LastName sql.NullString `db:"last_name"`
PhoneNumber sql.NullString `db:"phone_number"`
Bio sql.NullString `db:"bio"`
Type string `db:"type"`
CreatedAt string `db:"createdAt"`
UpdatedAt string `db:"updatedAt"`
}
Click to show internal directories.
Click to hide internal directories.