summaryrefslogtreecommitdiff
path: root/runner/python
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 /runner/python
parent35e6ac334f6a62cf63b743182cd5355f6baf4406 (diff)
add .js and .ts support
also: remove unused/duplicate method runner.Hydrate
Diffstat (limited to 'runner/python')
-rw-r--r--runner/python/runner.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/runner/python/runner.go b/runner/python/runner.go
index 6aa6017..8d03f52 100644
--- a/runner/python/runner.go
+++ b/runner/python/runner.go
@@ -30,11 +30,6 @@ func (p python) Init() error {
return err
}
-func (p python) Hydrate(target model.Target) (model.HydratedTarget, error) {
- //TODO implement me
- panic("implement me")
-}
-
func (p python) Wants(fs fs.FS, file string, entry fs.DirEntry) (bool, error) {
return !entry.IsDir() && filepath.Ext(entry.Name()) == ".py", nil
}