api functions required by the appservice api
| 39 | |
| 40 | // api functions required by the appservice api |
| 41 | type AppserviceUserAPI interface { |
| 42 | PerformAccountCreation(ctx context.Context, req *PerformAccountCreationRequest, res *PerformAccountCreationResponse) error |
| 43 | PerformDeviceCreation(ctx context.Context, req *PerformDeviceCreationRequest, res *PerformDeviceCreationResponse) error |
| 44 | } |
| 45 | |
| 46 | type KeyserverUserAPI interface { |
| 47 | QueryDevices(ctx context.Context, req *QueryDevicesRequest, res *QueryDevicesResponse) error |
nothing calls this directly
no outgoing calls
no test coverage detected