mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-21 12:06:59 +01:00
Fix Query namespace
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user