mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-31 20:24:27 -04:00
13 lines
190 B
C#
13 lines
190 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Kyoo.Controllers
|
|
{
|
|
public interface ICrawler
|
|
{
|
|
Task Start(bool watch);
|
|
|
|
Task StopAsync();
|
|
}
|
|
}
|