Skip to content

Commit

Permalink
Merge pull request #500 from paillave/v
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
paillave authored Jul 31, 2024
2 parents 5c28805 + 40bd5db commit 0a04aee
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Paillave.Etl/Core/NoFileValueConnectors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ namespace Paillave.Etl.Core
{
public class NoFileValueConnectors : IFileValueConnectors
{
public string[] Processors => new string[] { };
public string[] Providers => new string[] { };

public IFileValueProvider GetProvider(string code) => new NoFileValueProvider(code);
public IFileValueProcessor GetProcessor(string code) => new NoFileValueProcessor(code);
}
Expand Down

0 comments on commit 0a04aee

Please sign in to comment.