mirror of
https://github.com/space-wizards/RobustToolboxTemplate.git
synced 2026-02-10 16:24:49 -05:00
10 lines
No EOL
284 B
C#
10 lines
No EOL
284 B
C#
namespace Content.Server;
|
|
|
|
internal static class ServerContentIoC
|
|
{
|
|
public static void Register(IDependencyCollection dependencies)
|
|
{
|
|
// DEVNOTE: IoCManager registrations for the server go here and only here.
|
|
dependencies.Register<LocalHostConGroup>();
|
|
}
|
|
} |