8 lines
124 B
C#
Raw Normal View History

2025-09-19 19:43:49 +05:00
namespace VContainer.Unity
{
public interface IInstaller
{
void Install(IContainerBuilder builder);
}
}