Skip to content

Commit 733b3b9

Browse files
committed
Decoupled tmdb
1 parent bffaf80 commit 733b3b9

24 files changed

+17
-630
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Contributing to moview.io front
1+
# Contributing to front
22

3-
Looking to contribute something to moview.io front? **Here's how you can help.**
3+
Looking to contribute something to front? **Here's how you can help.**
44

55
Please take a moment to review this document in order to make the contribution
66
process easy and effective for everyone involved.
@@ -12,7 +12,7 @@ patches and features.
1212

1313
## Using the issue tracker
1414

15-
The [issue tracker](https://github.com/moviewio/front/issues) is
15+
The [issue tracker](https://github.com/tvtio/front/issues) is
1616
the preferred channel for [bug reports](#bug-reports), [features requests](#feature-requests)
1717
and [submitting pull requests](#pull-requests), but please respect the following
1818
restrictions:

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ deps: dev-deps
3131
go get golang.org/x/oauth2
3232
go get github.com/repejota/cache
3333
go get github.com/repejota/logger
34+
go get github.com/tvtio/tmdb
3435

3536
dev-deps:
3637
go get github.com/golang/lint/golint

catalog/episode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"log"
99

1010
"github.com/repejota/cache"
11-
"github.com/tvtio/front/tmdb"
11+
"github.com/tvtio/tmdb"
1212
)
1313

1414
// Episode ...

catalog/movie.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"log"
99

1010
"github.com/repejota/cache"
11-
"github.com/tvtio/front/tmdb"
11+
"github.com/tvtio/tmdb"
1212
)
1313

1414
// Movie ...

catalog/multi.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"log"
99

1010
"github.com/repejota/cache"
11-
"github.com/tvtio/front/tmdb"
11+
"github.com/tvtio/tmdb"
1212
)
1313

1414
// SearchMulti ...

catalog/person.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"log"
99

1010
"github.com/repejota/cache"
11-
"github.com/tvtio/front/tmdb"
11+
"github.com/tvtio/tmdb"
1212
)
1313

1414
// Person ...

catalog/season.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"log"
99

1010
"github.com/repejota/cache"
11-
"github.com/tvtio/front/tmdb"
11+
"github.com/tvtio/tmdb"
1212
)
1313

1414
// Season ...

catalog/tv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"log"
99

1010
"github.com/repejota/cache"
11-
"github.com/tvtio/front/tmdb"
11+
"github.com/tvtio/tmdb"
1212
)
1313

1414
// TV ...

server/routes/episode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/julienschmidt/httprouter"
1212
"github.com/repejota/logger"
1313
"github.com/tvtio/front/catalog"
14-
"github.com/tvtio/front/tmdb"
14+
"github.com/tvtio/tmdb"
1515
)
1616

1717
// Episode is the /tv/:id/season/:sid/episode/:enumber route

server/routes/index.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/julienschmidt/httprouter"
1212
"github.com/repejota/logger"
1313
"github.com/tvtio/front/catalog"
14-
"github.com/tvtio/front/tmdb"
14+
"github.com/tvtio/tmdb"
1515
)
1616

1717
// Index is the / route

0 commit comments

Comments
 (0)