Documentation
¶
Index ¶
- type AddToTeamParams
- type DBTX
- type ListForTeamParams
- type ListForTeamRow
- type Querier
- type Queries
- func (q *Queries) AddToTeam(ctx context.Context, arg AddToTeamParams) (*TeamRepository, error)
- func (q *Queries) ListForTeam(ctx context.Context, arg ListForTeamParams) ([]*ListForTeamRow, error)
- func (q *Queries) RemoveFromTeam(ctx context.Context, arg RemoveFromTeamParams) error
- func (q *Queries) WithTx(tx pgx.Tx) *Queries
- type RemoveFromTeamParams
- type TeamRepository
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddToTeamParams ¶
type ListForTeamParams ¶
type ListForTeamRow ¶
type ListForTeamRow struct { TeamRepository TeamRepository TotalCount int64 }
type Querier ¶
type Querier interface { AddToTeam(ctx context.Context, arg AddToTeamParams) (*TeamRepository, error) ListForTeam(ctx context.Context, arg ListForTeamParams) ([]*ListForTeamRow, error) RemoveFromTeam(ctx context.Context, arg RemoveFromTeamParams) error }
type Queries ¶
type Queries struct {
// contains filtered or unexported fields
}
func (*Queries) AddToTeam ¶
func (q *Queries) AddToTeam(ctx context.Context, arg AddToTeamParams) (*TeamRepository, error)
func (*Queries) ListForTeam ¶
func (q *Queries) ListForTeam(ctx context.Context, arg ListForTeamParams) ([]*ListForTeamRow, error)
func (*Queries) RemoveFromTeam ¶
func (q *Queries) RemoveFromTeam(ctx context.Context, arg RemoveFromTeamParams) error
type RemoveFromTeamParams ¶
type TeamRepository ¶
Click to show internal directories.
Click to hide internal directories.