|
@ -35,7 +35,9 @@ export default class MovieSearch extends InternalService<Application> |
|
|
/** |
|
|
/** |
|
|
* The name of the service |
|
|
* The name of the service |
|
|
*/ |
|
|
*/ |
|
|
public get name() { return "Movie Search" } |
|
|
|
|
|
|
|
|
public get name() { |
|
|
|
|
|
return "Movie Search"; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* Start the service |
|
|
* Start the service |
|
@ -52,13 +54,6 @@ export default class MovieSearch extends InternalService<Application> |
|
|
this.tmdb = new TheMovieDb(apiKey); |
|
|
this.tmdb = new TheMovieDb(apiKey); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Shutdown the service |
|
|
|
|
|
*/ |
|
|
|
|
|
public async shutdown() { |
|
|
|
|
|
// no-op
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* Store an IMDb ID in cache |
|
|
* Store an IMDb ID in cache |
|
|
*/ |
|
|
*/ |
|
|