mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-17 03:43:11 -06:00
26 lines
573 B
Go
26 lines
573 B
Go
package query
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/matrix-org/dendrite/federationsender/api"
|
|
)
|
|
|
|
// InputJoinRequest implements api.FederationSenderInternalAPI
|
|
func (r *FederationSenderInternalAPI) InputJoinRequest(
|
|
ctx context.Context,
|
|
request *api.InputJoinRequest,
|
|
response *api.InputJoinResponse,
|
|
) (err error) {
|
|
return nil
|
|
}
|
|
|
|
// InputLeaveRequest implements api.FederationSenderInternalAPI
|
|
func (r *FederationSenderInternalAPI) InputLeaveRequest(
|
|
ctx context.Context,
|
|
request *api.InputLeaveRequest,
|
|
response *api.InputLeaveResponse,
|
|
) (err error) {
|
|
return nil
|
|
}
|