diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-01-06 04:36:01 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-01-06 05:05:34 +0900 |
| commit | 79adf217f4ca94fdfeb8a190fc7dc49fd26254dd (patch) | |
| tree | bc9cfb855369bb6539fb11634fa0d132a6ef6a4e /internal/pkg/pkg.go | |
| parent | 8efffd72f4c5a0f241075fd13e4d07d71fd7fde8 (diff) | |
internal/pkg: implement exec artifact
This runs a program in a container environment. Artifacts can be made available to the container, they are cured concurrently and mounted in order.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/pkg/pkg.go')
| -rw-r--r-- | internal/pkg/pkg.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/pkg/pkg.go b/internal/pkg/pkg.go index 39563c90..00d6cf76 100644 --- a/internal/pkg/pkg.go +++ b/internal/pkg/pkg.go @@ -183,6 +183,8 @@ const ( KindHTTPGet Kind = iota // KindTar is the kind of [Artifact] returned by [NewTar]. KindTar + // KindExec is the kind of [Artifact] returned by [NewExec]. + KindExec ) // Ident returns a deterministic identifier for the supplied params and |
