mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-02 19:42:51 +08:00
12 lines
297 B
C#
12 lines
297 B
C#
namespace Ocelot.DependencyInjection
|
|
{
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
public interface IOcelotAdministrationBuilder
|
|
{
|
|
IServiceCollection Services { get; }
|
|
IConfiguration ConfigurationRoot { get; }
|
|
}
|
|
}
|