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