Refactor filesystems registration

This commit is contained in:
Stephan
2019-01-09 17:39:32 +01:00
parent 2bc63b9700
commit 944d47f669
17 changed files with 211 additions and 112 deletions

View File

@@ -0,0 +1,11 @@
using Umbraco.Core.Composing;
namespace Umbraco.Core.IO
{
public class SupportingFileSystems : TargetedServiceProvider<IFileSystem>
{
public SupportingFileSystems(IFactory factory)
: base(factory)
{ }
}
}