diff options
| author | ewy <ewy0@protonmail.com> | 2026-04-14 16:37:17 +0200 |
|---|---|---|
| committer | ewy <ewy0@protonmail.com> | 2026-04-14 16:37:17 +0200 |
| commit | 45a297a8e526094e8fce6e2c5c0fd89b381d1765 (patch) | |
| tree | 852ebc3a0112c94dc9726d0b27ab057bf6383660 /model/runner.go | |
i have to commit at some point!
Diffstat (limited to 'model/runner.go')
| -rw-r--r-- | model/runner.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/model/runner.go b/model/runner.go new file mode 100644 index 0000000..b413d51 --- /dev/null +++ b/model/runner.go @@ -0,0 +1,11 @@ +package model + +import ( + "io/fs" +) + +type Runner interface { + Hydrate(target Target) (HydratedTarget, error) + Wants(fs fs.FS, file string, entry fs.DirEntry) (bool, error) + CreateTarget(fs fs.FS, source string, file string, entry fs.DirEntry) (Target, error) +} |
