mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-06-19 05:48:16 +08:00
moved json converters under authentication feature
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using Ocelot.Configuration;
|
||||
|
||||
namespace Ocelot.AcceptanceTests
|
||||
namespace Ocelot.Authentication.JsonConverters
|
||||
{
|
||||
using Newtonsoft.Json.Linq;
|
||||
public class AuthenticationConfigConverter : JsonConverter
|
||||
{
|
||||
public override bool CanWrite => false;
|
@ -4,13 +4,12 @@ using System.Threading.Tasks;
|
||||
using Consul;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using Ocelot.Authentication.JsonConverters;
|
||||
using Ocelot.Responses;
|
||||
using Ocelot.ServiceDiscovery;
|
||||
|
||||
namespace Ocelot.Configuration.Repository
|
||||
{
|
||||
using Ocelot.AcceptanceTests;
|
||||
|
||||
public class ConsulOcelotConfigurationRepository : IOcelotConfigurationRepository
|
||||
{
|
||||
private readonly ConsulClient _consul;
|
||||
|
Reference in New Issue
Block a user