summaryrefslogtreecommitdiff
path: root/model/runner.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/runner.go')
-rw-r--r--model/runner.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/model/runner.go b/model/runner.go
index e8cbcc0..eda2505 100644
--- a/model/runner.go
+++ b/model/runner.go
@@ -8,7 +8,6 @@ import (
// these are mostly used for pikdex but other runners can use them as well
// these have to be registered in main.go
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)
}