diff options
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{} |