summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Services/IRobotsTxtGenerator.cs4
-rw-r--r--Services/RobotsTxtGenerator.cs (renamed from RobotsTxtGenerator.cs)2
2 files changed, 2 insertions, 4 deletions
diff --git a/Services/IRobotsTxtGenerator.cs b/Services/IRobotsTxtGenerator.cs
index d989c8f..6f49924 100644
--- a/Services/IRobotsTxtGenerator.cs
+++ b/Services/IRobotsTxtGenerator.cs
@@ -1,6 +1,4 @@
-using System.Text;
-
-namespace MyDarling.Controllers;
+namespace MyDarling.Services;
public interface IRobotsTxtGenerator
{
diff --git a/RobotsTxtGenerator.cs b/Services/RobotsTxtGenerator.cs
index 8417f6f..26e5cee 100644
--- a/RobotsTxtGenerator.cs
+++ b/Services/RobotsTxtGenerator.cs
@@ -1,6 +1,6 @@
using System.Text;
-namespace MyDarling.Controllers;
+namespace MyDarling.Services;
public class RobotsTxtGenerator : IRobotsTxtGenerator
{