Versions in this module Expand all Collapse all v1 v1.0.10 Apr 27, 2026 v1.0.9 Apr 23, 2026 v1.0.8 Apr 23, 2026 v1.0.7 Mar 27, 2026 v1.0.6 Mar 21, 2026 v1.0.5 Mar 2, 2026 v1.0.4 Mar 2, 2026 v1.0.3 Feb 24, 2026 v1.0.2 Jan 28, 2026 v1.0.1 Jan 28, 2026 v1.0.0 Jan 26, 2026 v0 v0.1.2 Jan 26, 2026 v0.1.1 Jan 23, 2026 v0.1.0 Jan 20, 2026 v0.0.4 Oct 23, 2025 v0.0.3 Oct 17, 2025 v0.0.2 Oct 15, 2025 Changes in this version + type Auth struct + CreatedAt string + Description string + ID int64 + LastUsedAt string + Name string + Value string + type DBTX interface + ExecContext func(context.Context, string, ...interface{}) (sql.Result, error) + PrepareContext func(context.Context, string) (*sql.Stmt, error) + QueryContext func(context.Context, string, ...interface{}) (*sql.Rows, error) + QueryRowContext func(context.Context, string, ...interface{}) *sql.Row + type Global struct + CreatedAt string + Description string + ID int64 + LastUsedAt string + Name string + Value string + type InsertAuthParams struct + CreatedAt string + Description string + LastUsedAt string + Name string + Value string + type InsertGlobalParams struct + CreatedAt string + Description string + LastUsedAt string + Name string + Value string + type Queries struct + func New(db DBTX) *Queries + func (q *Queries) DeleteAuth(ctx context.Context, id int64) (Auth, error) + func (q *Queries) DeleteGlobal(ctx context.Context, id int64) (Global, error) + func (q *Queries) GetAuthsByName(ctx context.Context, name string) ([]Auth, error) + func (q *Queries) GetGlobalsByName(ctx context.Context, name string) ([]Global, error) + func (q *Queries) GetLastUsedAuthByName(ctx context.Context, name string) (Auth, error) + func (q *Queries) GetLastUsedGlobalByName(ctx context.Context, name string) (Global, error) + func (q *Queries) InsertAuth(ctx context.Context, arg InsertAuthParams) (int64, error) + func (q *Queries) InsertGlobal(ctx context.Context, arg InsertGlobalParams) (int64, error) + func (q *Queries) UpdateAuthLastUsedAt(ctx context.Context, arg UpdateAuthLastUsedAtParams) (Auth, error) + func (q *Queries) UpdateGlobalLastUsedAt(ctx context.Context, arg UpdateGlobalLastUsedAtParams) (Global, error) + func (q *Queries) WithTx(tx *sql.Tx) *Queries + type UpdateAuthLastUsedAtParams struct + ID int64 + LastUsedAt string + type UpdateGlobalLastUsedAtParams struct + ID int64 + LastUsedAt string v0.0.1 Oct 10, 2025