feat(updater): Executor interface

This commit is contained in:
2026-05-22 11:53:42 +02:00
parent db784ad303
commit 058b9d8c07
+15
View File
@@ -0,0 +1,15 @@
// Package updater contains the FIFO job queue, the single worker that
// drains it, and the abstraction over `docker compose` invocation.
package updater
import (
"context"
"github.com/shcizo/package-updater/internal/discovery"
)
// Executor runs `docker compose pull` then `up -d` for a single job.
// Defined as an interface so the worker can be tested with a fake.
type Executor interface {
Execute(ctx context.Context, job discovery.Job) error
}