Created action to dynamically build the robots.txt

This commit is contained in:
Alejandro Celaya
2021-05-22 07:15:34 +02:00
parent 2803f65479
commit 7280b48cdc
7 changed files with 162 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Core\Crawling;
class CrawlingHelper implements CrawlingHelperInterface
{
public function listCrawlableShortCodes(): iterable
{
return [];
}
}