| 8026 | } |
| 8027 | |
| 8028 | type GetChatsRow struct { |
| 8029 | Chat Chat `db:"chat" json:"chat"` |
| 8030 | HasUnread bool `db:"has_unread" json:"has_unread"` |
| 8031 | } |
| 8032 | |
| 8033 | func (q *sqlQuerier) GetChats(ctx context.Context, arg GetChatsParams) ([]GetChatsRow, error) { |
| 8034 | rows, err := q.db.QueryContext(ctx, getChats, |
nothing calls this directly
no outgoing calls
no test coverage detected