using System.Threading;
using System.Threading.Tasks;

namespace News_site.Services
{
	public interface ICronbot
	{
		Task DoCrawlData();
	}
}