mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-12 23:01:40 +00:00
20 lines
513 B
Go
20 lines
513 B
Go
|
package internal
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/matrix-org/dendrite/keyserver/api"
|
||
|
)
|
||
|
|
||
|
type KeyInternalAPI struct{}
|
||
|
|
||
|
func (a *KeyInternalAPI) PerformUploadKeys(ctx context.Context, req *api.PerformUploadKeysRequest, res *api.PerformUploadKeysResponse) {
|
||
|
|
||
|
}
|
||
|
func (a *KeyInternalAPI) PerformClaimKeys(ctx context.Context, req *api.PerformClaimKeysRequest, res *api.PerformClaimKeysResponse) {
|
||
|
|
||
|
}
|
||
|
func (a *KeyInternalAPI) QueryKeys(ctx context.Context, req *api.QueryKeysRequest, res *api.QueryKeysResponse) {
|
||
|
|
||
|
}
|