2019-01-09 17:39:32 +01:00
|
|
|
|
using Umbraco.Core.Composing;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.IO
|
|
|
|
|
|
{
|
2019-01-14 08:53:04 +01:00
|
|
|
|
public class SupportingFileSystems : TargetedServiceFactory<IFileSystem>
|
2019-01-09 17:39:32 +01:00
|
|
|
|
{
|
|
|
|
|
|
public SupportingFileSystems(IFactory factory)
|
|
|
|
|
|
: base(factory)
|
|
|
|
|
|
{ }
|
|
|
|
|
|
}
|
2019-01-14 08:53:04 +01:00
|
|
|
|
}
|