mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
9 lines
207 B
C#
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
|
|
{
|
|
} |