(raw pqtype.NullRawMessage)
| 1875 | } |
| 1876 | |
| 1877 | func nullRawJSONObject(raw pqtype.NullRawMessage) map[string]any { |
| 1878 | if !raw.Valid { |
| 1879 | return nil |
| 1880 | } |
| 1881 | return rawJSONObject(raw.RawMessage) |
| 1882 | } |
| 1883 | |
| 1884 | // ChatDebugRunSummary converts a database.ChatDebugRun to a |
| 1885 | // codersdk.ChatDebugRunSummary. |
no test coverage detected