| 608 | GraphUUID string `json:"GraphUUID"` |
| 609 | } |
| 610 | type getGraphSaltResponse struct { |
| 611 | Value string `json:"value"` |
| 612 | ExpiredAt int64 `json:"expired-at"` |
| 613 | } |
| 614 | |
| 615 | func (s *server) getGraphSalt(ctx context.Context, req *getGraphSaltRequest) (*getGraphSaltResponse, error) { |
| 616 | salts, err := s.db.GraphSalts(ctx, db.GraphID(req.GraphUUID)) |
nothing calls this directly
no outgoing calls
no test coverage detected