// Author: Simon Gockner // Created: 2020-09-14 // Copyright(c) 2020 SimonG. All Rights Reserved. using Lib.Logging.Interfaces; using Lib.Logging.Loggers.Interfaces; namespace Lib.Logging.Loggers.Factories { public interface ILoggerInitializerFactory { ILoggerInitializer Create(ILog log); } }