// Author: Gockner, Simon // Created: 2021-04-06 // Copyright(c) 2021 SimonG. All Rights Reserved. using LightweightIocContainer; using LightweightIocContainer.Interfaces; namespace Mystify { public class Bootstrapper { public IIocContainer BootstrapKernel() => new IocContainer().Install(); } }