Files
nadekobot/src/NadekoBot/Services/INService.cs

9 lines
207 B
C#

#nullable disable
namespace NadekoBot.Services;
/// <summary>
/// All services must implement this interface in order to be auto-discovered by the DI system
/// </summary>
public interface INService
{
}