From 3655495dfdb1c0024eafa4efe3d6ab745e087af0 Mon Sep 17 00:00:00 2001 From: Sergey Chebotar Date: Wed, 14 Jun 2023 08:22:20 +0300 Subject: [PATCH] Fix namespaces --- Services/IRobotsTxtGenerator.cs | 4 +--- RobotsTxtGenerator.cs => Services/RobotsTxtGenerator.cs | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) rename RobotsTxtGenerator.cs => Services/RobotsTxtGenerator.cs (92%) 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 similarity index 92% rename from RobotsTxtGenerator.cs rename to 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 {