MCPcopy Index your code
hub / github.com/coder/coder / nullRawJSONObject

Function nullRawJSONObject

coderd/database/db2sdk/db2sdk.go:1877–1882  ·  view source on GitHub ↗
(raw pqtype.NullRawMessage)

Source from the content-addressed store, hash-verified

1875}
1876
1877func 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.

Callers 1

ChatDebugStepFunction · 0.85

Calls 1

rawJSONObjectFunction · 0.85

Tested by

no test coverage detected