diff --git a/src/Tgstation.Server.Host/Core/IPostWriteHandler.cs b/src/Tgstation.Server.Host/IO/IPostWriteHandler.cs similarity index 86% rename from src/Tgstation.Server.Host/Core/IPostWriteHandler.cs rename to src/Tgstation.Server.Host/IO/IPostWriteHandler.cs index 7209b44761..7686d742c8 100644 --- a/src/Tgstation.Server.Host/Core/IPostWriteHandler.cs +++ b/src/Tgstation.Server.Host/IO/IPostWriteHandler.cs @@ -1,4 +1,4 @@ -namespace Tgstation.Server.Host.Core +namespace Tgstation.Server.Host.IO { interface IPostWriteHandler { diff --git a/src/Tgstation.Server.Host/Core/PosixPostWriteHandler.cs b/src/Tgstation.Server.Host/IO/PosixPostWriteHandler.cs similarity index 94% rename from src/Tgstation.Server.Host/Core/PosixPostWriteHandler.cs rename to src/Tgstation.Server.Host/IO/PosixPostWriteHandler.cs index d121d2bca8..d656e0fa99 100644 --- a/src/Tgstation.Server.Host/Core/PosixPostWriteHandler.cs +++ b/src/Tgstation.Server.Host/IO/PosixPostWriteHandler.cs @@ -1,7 +1,7 @@ using Mono.Unix; using Mono.Unix.Native; -namespace Tgstation.Server.Host.Core +namespace Tgstation.Server.Host.IO { /// /// for POSIX systems diff --git a/src/Tgstation.Server.Host/Core/WindowsPostWriteHandler.cs b/src/Tgstation.Server.Host/IO/WindowsPostWriteHandler.cs similarity index 84% rename from src/Tgstation.Server.Host/Core/WindowsPostWriteHandler.cs rename to src/Tgstation.Server.Host/IO/WindowsPostWriteHandler.cs index 42ed2cdf1b..6d149644fa 100644 --- a/src/Tgstation.Server.Host/Core/WindowsPostWriteHandler.cs +++ b/src/Tgstation.Server.Host/IO/WindowsPostWriteHandler.cs @@ -1,4 +1,4 @@ -namespace Tgstation.Server.Host.Core +namespace Tgstation.Server.Host.IO { /// /// for Windows systems