2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-12-18 21:34:57 +01:00

Fix Assembly Registration

This commit is contained in:
2024-04-20 23:54:41 +10:00
parent 48df4faab5
commit 4274496150
3 changed files with 19 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
using Lamar;
using Pulsar.Features;
namespace Pulsar;
public class PulsarServiceRegistry : ServiceRegistry
{
public PulsarServiceRegistry()
{
For<IFileHandlerService>().Use<FileHandlerService>();
For<IStatusService>().Use<StatusService>();
}
}