2020-01-18 17:34:07 +01:00

13 lines
177 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace Kyoo.Controllers
{
public interface ICrawler
{
void Start();
void Cancel();
}
}