9 lines
127 B
C#
9 lines
127 B
C#
using System.Text;
|
|
|
|
namespace MyDarling.Controllers;
|
|
|
|
public interface IRobotsTxtGenerator
|
|
{
|
|
public string GetRobotsText();
|
|
}
|