mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
13 lines
177 B
C#
13 lines
177 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Kyoo.Controllers
|
|
{
|
|
public interface ICrawler
|
|
{
|
|
void Start();
|
|
|
|
void Cancel();
|
|
}
|
|
}
|