Moving crawler first call to a startup code

This commit is contained in:
Zoe Roux
2020-02-10 01:53:17 +01:00
parent 9d6da207fe
commit 46cfd6f3c7
8 changed files with 86 additions and 93 deletions
+1 -3
View File
@@ -5,8 +5,6 @@ namespace Kyoo.Controllers
{
public interface ICrawler
{
void Start();
void Cancel();
Task StartAsync(CancellationToken cancellationToken);
}
}