2020-01-18 00:42:49 +01:00

13 lines
190 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace Kyoo.Controllers
{
public interface ICrawler
{
Task Start(bool watch);
Task StopAsync();
}
}