This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-toolbuilder-cil/src/MfGames.ToolBuilder.Tables/ToolBuilderTablesModule.cs

19 lines
423 B
C#
Raw Normal View History

2022-04-02 23:52:44 +00:00
using Autofac;
namespace MfGames.ToolBuilder.Tables;
/// <summary>
/// The Autofac module to pull in the components inside this assembly.
/// </summary>
public class ToolBuilderTablesModule : Module
{
/// <inheritdoc />
protected override void Load(ContainerBuilder builder)
{
builder
.RegisterType<TableToolService>()
.AsSelf()
.AsImplementedInterfaces();
}
}