mirror of
https://github.com/hoernschen/dendrite.git
synced 2024-12-29 08:18:27 +00:00
14 lines
255 B
Go
14 lines
255 B
Go
package api
|
|
|
|
import "context"
|
|
|
|
type PushserverInternalAPI interface {
|
|
QueryExample(
|
|
ctx context.Context,
|
|
request *QueryExampleRequest,
|
|
response *QueryExampleResponse,
|
|
) error
|
|
}
|
|
|
|
type QueryExampleRequest struct{}
|
|
type QueryExampleResponse struct{}
|