mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
12 lines
239 B
Go
12 lines
239 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/matrix-org/gomatrixserverlib"
|
||
|
)
|
||
|
|
||
|
type ServersInRoomProvider interface {
|
||
|
GetServersForRoom(ctx context.Context, roomID string, event *gomatrixserverlib.Event) []gomatrixserverlib.ServerName
|
||
|
}
|