add movie scraping and documentation
Some checks failed
Build docker container / build (push) Failing after 7m21s

This commit is contained in:
David Claeys
2024-05-17 10:17:15 +02:00
parent a82d7bd861
commit 87e8700236
8 changed files with 203 additions and 14 deletions

View File

@ -0,0 +1,7 @@
namespace Telebilbap_Epg.Services
{
public interface IMovieService
{
Task<Movie?> GetMovie(string title, int? year);
}
}