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