You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
295 B

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() {
}
}