mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
17 lines
489 B
C#
17 lines
489 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using Lamar;
|
|
using Pulsar.Features;
|
|
using Pulsar.Features.ModulesInfo;
|
|
|
|
namespace Pulsar;
|
|
|
|
[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicConstructors)]
|
|
public class PulsarServiceRegistry : ServiceRegistry
|
|
{
|
|
public PulsarServiceRegistry()
|
|
{
|
|
For<IFileHandlerService>().Use<FileHandlerService>();
|
|
For<IStatusService>().Use<StatusService>();
|
|
For<IModulesInfoService>().Use<ModulesInfoService>();
|
|
}
|
|
} |