| 1 | namespace Microsoft.Playfab.Gaming.GSDK.CSharp |
| 2 | { |
| 3 | internal interface IHttpClientFactory |
| 4 | { |
| 5 | IHttpClient CreateInstance(string baseUrl); |
| 6 | } |
| 7 | |
| 8 | internal class HttpClientFactory : IHttpClientFactory |
| 9 | { |
nothing calls this directly
no outgoing calls
no test coverage detected