mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-04-04 02:53:40 +00:00
37 lines
767 B
Go
37 lines
767 B
Go
|
package internal
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/matrix-org/dendrite/pushserver/api"
|
||
|
"github.com/matrix-org/dendrite/pushserver/storage"
|
||
|
"github.com/matrix-org/dendrite/setup/config"
|
||
|
)
|
||
|
|
||
|
// PushserverInternalAPI implements api.PushserverInternalAPI
|
||
|
type PushserverInternalAPI struct {
|
||
|
DB storage.Database
|
||
|
Cfg *config.PushServer
|
||
|
}
|
||
|
|
||
|
func NewPushserverAPI(
|
||
|
cfg *config.PushServer, pushserverDB storage.Database,
|
||
|
) *PushserverInternalAPI {
|
||
|
a := &PushserverInternalAPI{
|
||
|
DB: pushserverDB,
|
||
|
Cfg: cfg,
|
||
|
}
|
||
|
return a
|
||
|
}
|
||
|
|
||
|
// SetRoomAlias implements RoomserverAliasAPI
|
||
|
func (p *PushserverInternalAPI) QueryExample(
|
||
|
ctx context.Context,
|
||
|
request *api.QueryExampleRequest,
|
||
|
response *api.QueryExampleResponse,
|
||
|
) error {
|
||
|
// Implement QueryExample here!
|
||
|
|
||
|
return nil
|
||
|
}
|