(n sql.NullInt64)
| 7325 | } |
| 7326 | |
| 7327 | func nullInt64Ptr(n sql.NullInt64) *int64 { |
| 7328 | if !n.Valid { |
| 7329 | return nil |
| 7330 | } |
| 7331 | return &n.Int64 |
| 7332 | } |
| 7333 | |
| 7334 | func writeChatUsageLimitUserNotFound(ctx context.Context, rw http.ResponseWriter) { |
| 7335 | httpapi.Write(ctx, rw, http.StatusBadRequest, codersdk.Response{ |
no outgoing calls
no test coverage detected