From 3615059a96cebc0d34fd0202d5d8179bd6620992 Mon Sep 17 00:00:00 2001 From: Timothy Schenk Date: Mon, 5 Feb 2024 09:16:42 +0100 Subject: [PATCH] chore: annotations --- Continuity.AuthServer/Consumers/PacketConsumer.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Continuity.AuthServer/Consumers/PacketConsumer.cs b/Continuity.AuthServer/Consumers/PacketConsumer.cs index 5b9616d..0a17e02 100644 --- a/Continuity.AuthServer/Consumers/PacketConsumer.cs +++ b/Continuity.AuthServer/Consumers/PacketConsumer.cs @@ -1,6 +1,7 @@ // Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License. using Continuity.AuthServer.Packets; +using JetBrains.Annotations; using MassTransit; using NetCoreServer; using Rai.PacketMediator; @@ -8,6 +9,7 @@ using Wonderking.Packets; namespace Continuity.AuthServer.Consumers; +[UsedImplicitly] public class PacketConsumer : IConsumer { private readonly PacketDistributorService _distributorService;