using Autofac; namespace Chernobyl.App.Core { /// /// Binds common services for the UI. /// public class Module : Autofac.Module { /// protected override void Load(ContainerBuilder builder) { builder.BindStylesResourceAuto(); } } }