about summary refs log tree commit diff
path: root/LibMatrix.Federation/AuthenticatedFederationClient.cs
blob: b66d2cbf1e2091eb73ffed19ce729a590ec7138c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using LibMatrix.Homeservers;

namespace LibMatrix.Federation;

public class AuthenticatedFederationClient : FederationClient {
    public class AuthenticatedFederationConfiguration {
        
    }
    public AuthenticatedFederationClient(string federationEndpoint, AuthenticatedFederationConfiguration config, string? proxy = null) : base(federationEndpoint, proxy)
    {
        
    }
    
}