mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-18 07:40:53 +01:00
396219ef53
Also add a README which outilnes how things will work.
19 lines
513 B
Go
19 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) {
|
|
|
|
}
|