mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
- Removed IUnloadableService - Started removing INService (removed it from services which implement behavior interfaces) - wip - Added scrutor for better service registration - wip
11 lines
224 B
C#
11 lines
224 B
C#
namespace NadekoBot.Services
|
|
{
|
|
/// <summary>
|
|
/// All services must implement this interface in order to be auto-discovered by the DI system
|
|
/// </summary>
|
|
public interface INService
|
|
{
|
|
|
|
}
|
|
}
|