mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-02 23:22:52 +08:00
10 lines
180 B
C#
10 lines
180 B
C#
using Ocelot.Responses;
|
|
|
|
namespace Ocelot.Configuration.Provider
|
|
{
|
|
public interface IOcelotConfigurationProvider
|
|
{
|
|
Response<IOcelotConfiguration> Get();
|
|
}
|
|
}
|