package models
import "github.com/go-arrower/arrower/alog/models"
Index ¶
Types ¶
type ArrowerLog ¶
type ArrowerLog struct { Time pgtype.Timestamptz UserID uuid.NullUUID Log []byte }
type DBTX ¶
type DBTX interface { Exec(context.Context, string, ...interface{}) (pgconn.CommandTag, error) Query(context.Context, string, ...interface{}) (pgx.Rows, error) QueryRow(context.Context, string, ...interface{}) pgx.Row CopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error) }
type GetRecentLogsParams ¶
type GetRecentLogsParams struct { Time pgtype.Timestamptz Limit int32 Msg string Level []string F0 string F1 string F2 string }
type LogRecordsParams ¶
type LogRecordsParams struct { Time pgtype.Timestamptz UserID uuid.NullUUID Log []byte }
type Queries ¶
type Queries struct {
// contains filtered or unexported fields
}
func New ¶
func (*Queries) GetRecentLogs ¶
func (q *Queries) GetRecentLogs(ctx context.Context, arg GetRecentLogsParams) ([]ArrowerLog, error)
func (*Queries) LogRecords ¶
func (*Queries) WithTx ¶
Source Files ¶
copyfrom.go db.go models.go query.sql.go
- Version
- v0.0.0-20250311203644-ab26c1152cb4 (latest)
- Published
- Mar 11, 2025
- Platform
- linux/amd64
- Imports
- 5 packages
- Last checked
- 1 week ago –
Tools for package owners.