This commit is contained in:
Jan Eitzinger 2024-03-19 16:16:02 +01:00
parent 81fe492655
commit 0005469101

View File

@ -30,13 +30,11 @@ var (
)
type JobRepository struct {
DB *sqlx.DB
driver string
stmtCache *sq.StmtCache
cache *lrucache.Cache
DB *sqlx.DB
stmtCache *sq.StmtCache
cache *lrucache.Cache
archiveChannel chan *schema.Job
driver string
archivePending sync.WaitGroup
}