| 32 | } |
| 33 | |
| 34 | type ClientFederationAPI interface { |
| 35 | // Query the server names of the joined hosts in a room. |
| 36 | // Unlike QueryJoinedHostsInRoom, this function returns a de-duplicated slice |
| 37 | // containing only the server names (without information for membership events). |
| 38 | // The response will include this server if they are joined to the room. |
| 39 | QueryJoinedHostServerNamesInRoom(ctx context.Context, request *QueryJoinedHostServerNamesInRoomRequest, response *QueryJoinedHostServerNamesInRoomResponse) error |
| 40 | } |
| 41 | |
| 42 | type RoomserverFederationAPI interface { |
| 43 | gomatrixserverlib.BackfillClient |
no outgoing calls
no test coverage detected