mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-17 03:43:11 -06:00
17 lines
297 B
Go
17 lines
297 B
Go
package internal
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
|
)
|
|
|
|
// WriteOutputEvents implements OutputRoomEventWriter
|
|
func (r *RoomserverInternalAPI) PerformJoin(
|
|
ctx context.Context,
|
|
req *api.PerformJoinRequest,
|
|
res *api.PerformJoinResponse,
|
|
) error {
|
|
return nil
|
|
}
|