mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix(clients): 🐛 fix baseuri for IDirectoryClient
This commit is contained in:
parent
7732799d20
commit
988b9b9cc8
1 changed files with 1 additions and 1 deletions
|
|
@ -9,7 +9,7 @@ public static class ConfigurationExtensions
|
|||
public static void AddApiClients(this IServiceCollection services)
|
||||
{
|
||||
services.AddRefitClient<IDirectoryApi>()
|
||||
.ConfigureHttpClient(c => c.BaseAddress = new Uri("http://directory-api/api"));
|
||||
.ConfigureHttpClient(c => c.BaseAddress = new Uri("http://directory-api"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue