summaryrefslogtreecommitdiff
path: root/model
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-05-02 18:28:40 +0200
committerewy <ewy0@protonmail.com>2026-05-02 18:28:40 +0200
commite8b9ca135642c76000bc0ec2e78674c602a748dd (patch)
tree4e502ce767a4a4f70e40d6e72a3817bc139f1300 /model
parent35e6ac334f6a62cf63b743182cd5355f6baf4406 (diff)
add .js and .ts support
also: remove unused/duplicate method runner.Hydrate
Diffstat (limited to 'model')
-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)
}