diff options
| author | Philipp Tanlak <philipp.tanlak@gmail.com> | 2023-08-29 19:02:10 +0200 |
|---|---|---|
| committer | Philipp Tanlak <philipp.tanlak@gmail.com> | 2023-08-29 19:02:10 +0200 |
| commit | d6f3ca94c3abf71f113dc8b7614318107736b980 (patch) | |
| tree | 09b45ed65f04df9a327b3a6beb169516f34f4760 /cmd | |
| parent | e8feea22a4803dbd19224f48e8beaab458cf387f (diff) | |
update imports
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/flyscrape/new.go | 2 | ||||
| -rw-r--r-- | cmd/flyscrape/run.go | 2 | ||||
| -rw-r--r-- | cmd/flyscrape/watch.go | 3 |
3 files changed, 3 insertions, 4 deletions
diff --git a/cmd/flyscrape/new.go b/cmd/flyscrape/new.go index c6b2d34..ce666ce 100644 --- a/cmd/flyscrape/new.go +++ b/cmd/flyscrape/new.go @@ -9,7 +9,7 @@ import ( "fmt" "os" - "flyscrape/js" + "github.com/philippta/flyscrape/js" ) type NewCommand struct{} diff --git a/cmd/flyscrape/run.go b/cmd/flyscrape/run.go index 8e83ca8..987d0e0 100644 --- a/cmd/flyscrape/run.go +++ b/cmd/flyscrape/run.go @@ -11,7 +11,7 @@ import ( "os" "time" - "flyscrape" + "github.com/philippta/flyscrape" ) type RunCommand struct{} diff --git a/cmd/flyscrape/watch.go b/cmd/flyscrape/watch.go index 777ae8a..b8e3c37 100644 --- a/cmd/flyscrape/watch.go +++ b/cmd/flyscrape/watch.go @@ -9,9 +9,8 @@ import ( "fmt" "log" - "flyscrape" - "github.com/inancgumus/screen" + "github.com/philippta/flyscrape" ) type WatchCommand struct{} |