Skip to content

Commit 3bc7fb1

Browse files
committed
cargo fmt
1 parent 624b25f commit 3bc7fb1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/cubejs-backend-native/src/node_export.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,6 @@ fn parse_cubestore_ws_result_message(mut cx: FunctionContext) -> JsResult<JsValu
529529
}
530530
}
531531

532-
533532
pub fn register_module_exports<C: NodeConfiguration + 'static>(
534533
mut cx: ModuleContext,
535534
) -> NeonResult<()> {
@@ -544,7 +543,10 @@ pub fn register_module_exports<C: NodeConfiguration + 'static>(
544543
cx.export_function("buildSqlAndParams", build_sql_and_params)?;
545544

546545
//========= sql orchestrator exports =================
547-
cx.export_function("parseCubestoreResultMessage", parse_cubestore_ws_result_message)?;
546+
cx.export_function(
547+
"parseCubestoreResultMessage",
548+
parse_cubestore_ws_result_message,
549+
)?;
548550

549551
crate::template::template_register_module(&mut cx)?;
550552

0 commit comments

Comments
 (0)