using Autofac; namespace Recyclarr.Cli.Cache; public class CacheAutofacModule : Module { protected override void Load(ContainerBuilder builder) { // Clients must register their own implementation of ICacheStoragePath builder.RegisterType().As(); } }