| 577 | GraphUUID string `json:"GraphUUID"` |
| 578 | } |
| 579 | type createGraphSaltResponse struct { |
| 580 | Value string `json:"value"` |
| 581 | ExpiredAt int64 `json:"expired-at"` |
| 582 | } |
| 583 | |
| 584 | func (s *server) createGraphSalt(ctx context.Context, req *createGraphSaltRequest) (*createGraphSaltResponse, error) { |
| 585 | _, err := s.db.Graph(ctx, db.GraphID(req.GraphUUID)) |
nothing calls this directly
no outgoing calls
no test coverage detected