orbis/internal/modelschedule/repositories/querier.go
kjuulh 2cdab4a1ab
All checks were successful
continuous-integration/drone/push Build is passing
feat: add worker distributor and model registry
2025-01-18 01:46:53 +01:00

20 lines
394 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.23.0
package repositories
import (
"context"
"github.com/jackc/pgx/v5/pgtype"
)
type Querier interface {
GetLast(ctx context.Context, modelName string) (pgtype.Timestamptz, error)
Ping(ctx context.Context) (int32, error)
UpsertModel(ctx context.Context, arg *UpsertModelParams) error
}
var _ Querier = (*Queries)(nil)