about summary refs log tree commit diff
path: root/MatrixUtils.LibDMSpace/HomeserverExtensions.cs
blob: 2bf5eaa3a2dcaad0a91b028f315e3eb6ea725365 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using LibMatrix.Homeservers;

namespace MatrixUtils.LibDMSpace;

public static class HomeserverExtensions {
    public static async Task<DMSpaceRoom> GetDMSpaceRoomAsync(this AuthenticatedHomeserverGeneric homeserver) {
        return null; //TODO: implement
    }
    
}