Versions in this module Expand all Collapse all v0 v0.1.0 Jun 16, 2026 Changes in this version + func DefaultPath() (string, error) + type DB struct + func Open(path string) (*DB, error) + func (d *DB) Insert(ctx context.Context, rec Deployment) (string, error) + func (d *DB) List(ctx context.Context, f Filter) ([]Deployment, error) + func (d *DB) MarkFailed(ctx context.Context, id, errMsg string) error + func (d *DB) MarkSuccess(ctx context.Context, id string) error + type Deployment struct + DeployedBy string + DurationMS *int64 + Env string + Error string + FinishedAt *int64 + GitSHA string + ID string + ImageURI string + Message string + Project string + Region string + Runtime string + StartedAt int64 + Status string + Target string + type Filter struct + Env string + Limit int + Project string