| 549 | GraphUUID string `json:"GraphUUID"` |
| 550 | } |
| 551 | type getGraphEncryptKeysResponse struct { |
| 552 | PublicKey string `json:"public-key"` |
| 553 | EncryptedPrivateKey string `json:"encrypted-private-key"` |
| 554 | } |
| 555 | |
| 556 | func (s *server) getGraphEncryptKeys(ctx context.Context, req *getGraphEncryptKeysRequest) (*getGraphEncryptKeysResponse, error) { |
| 557 | gID := db.GraphID(req.GraphUUID) |
nothing calls this directly
no outgoing calls
no test coverage detected