mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-01-01 01:38:26 +00:00
15 lines
255 B
Go
15 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{}
|