(value *json.RawMessage)
| 6056 | } |
| 6057 | |
| 6058 | func cloneRawMessagePtr(value *json.RawMessage) *json.RawMessage { |
| 6059 | if value == nil { |
| 6060 | return nil |
| 6061 | } |
| 6062 | cloned := cloneJSON(*value) |
| 6063 | return &cloned |
| 6064 | } |
| 6065 | |
| 6066 | func taskPriorityPtr(value *string) *taskpkg.Priority { |
| 6067 | if value == nil { |