Ocelot/src/Ocelot/Configuration/Provider/IOcelotConfigurationProvider.cs
2016-10-18 19:10:09 +01:00

10 lines
180 B
C#

using Ocelot.Responses;
namespace Ocelot.Configuration.Provider
{
public interface IOcelotConfigurationProvider
{
Response<IOcelotConfiguration> Get();
}
}