Add support for TMDB movie + series lookup

This commit is contained in:
2024-07-03 18:41:58 -05:00
parent 5f654f9ca6
commit f07e30d843
9 changed files with 475 additions and 1 deletions

View File

@ -29,7 +29,7 @@ import se.michaelthelin.spotify.model_objects.specification.Track;
public class SpotifyFeature extends Feature {
@Autowired
public SpotifyFeature(@NonNull ApplicationContext context, @NonNull CommandService commandService) {
super("Spotify", true,Category.MUSIC);
super("Spotify", true, Category.MUSIC);
super.registerCommand(commandService, context.getBean(SpotifyCommand.class));
}