(value T, err error)
| 304 | } |
| 305 | |
| 306 | func must[T any](value T, err error) T { |
| 307 | if err != nil { |
| 308 | panic(err) |
| 309 | } |
| 310 | return value |
| 311 | } |
| 312 | |
| 313 | func defaultIPAddress() pqtype.Inet { |
| 314 | return pqtype.Inet{ |
no outgoing calls
no test coverage detected