Fix Query namespace

This commit is contained in:
Jordan Dominion
2024-09-09 07:06:41 -04:00
parent f5b3afe715
commit e7cbd7978c
2 changed files with 7 additions and 5 deletions
@@ -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;
+5 -3
View File
@@ -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
{
/// <summary>
/// GraphQL query <see cref="global::System.Type"/>.
@@ -8,9 +10,9 @@ namespace Tgstation.Server.Host.GraphQL.Types
public sealed class Query
{
/// <summary>
/// Gets the <see cref="Types.ServerSwarm"/>.
/// Gets the <see cref="ServerSwarm"/>.
/// </summary>
/// <returns>A new <see cref="Types.ServerSwarm"/>.</returns>
/// <returns>A new <see cref="ServerSwarm"/>.</returns>
public ServerSwarm Swarm() => new();
}
}