summaryrefslogtreecommitdiff
path: root/Services
diff options
context:
space:
mode:
Diffstat (limited to 'Services')
-rw-r--r--Services/IRobotsTxtGenerator.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/Services/IRobotsTxtGenerator.cs b/Services/IRobotsTxtGenerator.cs
index 22bc5a7..d989c8f 100644
--- a/Services/IRobotsTxtGenerator.cs
+++ b/Services/IRobotsTxtGenerator.cs
@@ -6,17 +6,3 @@ public interface IRobotsTxtGenerator
{
public string GetRobotsText();
}
-
-public class RobotsTxtGenerator : IRobotsTxtGenerator
-{
- public string GetRobotsText()
- {
- StringBuilder stringBuilder = new();
- stringBuilder.AppendLine("user-agent: *");
- stringBuilder.AppendLine("Disallow: /freedom");
- stringBuilder.AppendLine("Disallow: /Account/");
- stringBuilder.AppendLine("Disallow: /account/");
-
- return stringBuilder.ToString();
- }
-}