From e7cbd7978c1954ddb468609d9ae2ff04fda078ab Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Mon, 9 Sep 2024 07:06:41 -0400 Subject: [PATCH] Fix `Query` namespace --- src/Tgstation.Server.Host/Core/Application.cs | 4 ++-- src/Tgstation.Server.Host/GraphQL/Query.cs | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/Tgstation.Server.Host/Core/Application.cs b/src/Tgstation.Server.Host/Core/Application.cs index fa3c35dbbf..44d5dd76e9 100644 --- a/src/Tgstation.Server.Host/Core/Application.cs +++ b/src/Tgstation.Server.Host/Core/Application.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Frozen; using System.Collections.Generic; using System.Globalization; @@ -52,7 +52,7 @@ using Tgstation.Server.Host.Controllers; using Tgstation.Server.Host.Controllers.Results; using Tgstation.Server.Host.Database; using Tgstation.Server.Host.Extensions; -using Tgstation.Server.Host.GraphQL.Types; +using Tgstation.Server.Host.GraphQL; using Tgstation.Server.Host.GraphQL.Types.Scalars; using Tgstation.Server.Host.IO; using Tgstation.Server.Host.Jobs; diff --git a/src/Tgstation.Server.Host/GraphQL/Query.cs b/src/Tgstation.Server.Host/GraphQL/Query.cs index 577cced304..3b57958392 100644 --- a/src/Tgstation.Server.Host/GraphQL/Query.cs +++ b/src/Tgstation.Server.Host/GraphQL/Query.cs @@ -1,6 +1,8 @@ #pragma warning disable CA1724 -namespace Tgstation.Server.Host.GraphQL.Types +using Tgstation.Server.Host.GraphQL.Types; + +namespace Tgstation.Server.Host.GraphQL { /// /// GraphQL query . @@ -8,9 +10,9 @@ namespace Tgstation.Server.Host.GraphQL.Types public sealed class Query { /// - /// Gets the . + /// Gets the . /// - /// A new . + /// A new . public ServerSwarm Swarm() => new(); } }