import Application from "@server/Application";
|
|
import TVDB from "tvdb-v4";
|
|
import Service from "./Service";
|
|
|
|
export default class MovieSearch extends Service
|
|
{
|
|
public constructor(app: Application) {
|
|
super("Movie Search", app);
|
|
}
|
|
|
|
public async boot() {
|
|
|
|
}
|
|
|
|
public async shutdown() {
|
|
|
|
}
|
|
}
|