2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
pulsar/Pulsar/PulsarServiceRegistry.cs

13 lines
273 B
C#

using Lamar;
using Pulsar.Features;
namespace Pulsar;
public class PulsarServiceRegistry : ServiceRegistry
{
public PulsarServiceRegistry()
{
For<IFileHandlerService>().Use<FileHandlerService>();
For<IStatusService>().Use<StatusService>();
}
}