mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-04 03:27:14 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			178 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			178 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Threading;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace Kyoo.Controllers
 | 
						|
{
 | 
						|
	public interface ICrawler
 | 
						|
	{
 | 
						|
		Task StartAsync(CancellationToken cancellationToken);
 | 
						|
	}
 | 
						|
}
 |