Skip to content

Commit ee3a3cd

Browse files
1 parent 08f83ca commit ee3a3cd

52 files changed

Lines changed: 55 additions & 55 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Source/Handler/Documents.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,7 @@ pub async fn notify_encoding_changed<R:Runtime>(_app_handle:AppHandle<R>, uri:&U
862862
}
863863

864864
// NEW:
865-
// // Example signature for a handler in handlers/documents.rs
865+
// // Example signature for a handler in Handler/documents.rs
866866
// pub async fn handle_open_document_effect_logic<R: tauri::Runtime>(
867867
// app_handle: tauri::AppHandle<R>,
868868
// // Pass MountainEnvironment directly so the handler can call
@@ -879,4 +879,4 @@ pub async fn notify_encoding_changed<R:Runtime>(_app_handle:AppHandle<R>, uri:&U
879879
// // ... or directly env.read_file(...) if FsReader is implemented on
880880
// MountainEnvironment ... // ... and calls to other
881881
// handlers::documents::notify_* functions ... todo!("Implement actual logic
882-
// in handlers/documents.rs") }
882+
// in Handler/documents.rs") }

Source/Handler/Error_Utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// - Centralizing error logging for these common error paths.
1616
//
1717
// Key Interactions:
18-
// - Used by various handler modules (`handlers/*`) and RPC method
18+
// - Used by various handler modules (`Handler/*`) and RPC method
1919
// implementations (`rpc.rs`) to generate error responses for Track or Vine.
2020
// - Consumes `CommonError` from the effect system or other operations.
2121
// --------------------------------------------------------------------------------------------

Source/Handler/Native_Fs.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
// **not** be called and will return errors indicating they are deprecated.
2525
// --------------------------------------------------------------------------------------------
2626

27-
// ----- START: DEPRECATED Element/Mountain/src/handlers/native_fs.rs -----
27+
// ----- START: DEPRECATED Element/Mountain/src/Handler/native_fs.rs -----
2828
// NOTE: This entire file is DEPRECATED.
2929
// Extensions should use `vscode.workspace.fs` API, which is handled by
3030
// `handlers::workspace_fs_api.rs` and `environment.rs`.
@@ -237,4 +237,4 @@ pub async fn handle_fs_unlink_proxy_deprecated(
237237
// Err(create_deprecated_error_string(DEPRECATED_NATIVE_FS_ERROR_MSG.
238238
// to_string(), None)) }
239239

240-
// ----- END: DEPRECATED Element/Mountain/src/handlers/native_fs.rs -----
240+
// ----- END: DEPRECATED Element/Mountain/src/Handler/native_fs.rs -----

Source/Handler/Output.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ pub async fn handle_dispose_output_channel<R:Runtime>(app:AppHandle<R>, args:Val
561561
}
562562

563563
// NEW:
564-
// // Example signature in handlers/output.rs
564+
// // Example signature in Handler/output.rs
565565
// pub async fn handle_register_output_channel_effect_logic<R: tauri::Runtime>(
566566
// app_handle: tauri::AppHandle<R>,
567567
// name: String,

Source/Handler/Secrets.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,14 +402,14 @@ pub async fn handle_delete_secret<R:Runtime>(app:AppHandle<R>, params:Value) ->
402402
}
403403

404404
// NEW:
405-
// Example signature in handlers/secrets.rs
405+
// Example signature in Handler/secrets.rs
406406
// pub async fn handle_get_secret_effect_logic<R: tauri::Runtime>(
407407
// app_handle: tauri::AppHandle<R>, // May not be needed if keyring access
408408
// is direct extension_id: String,
409409
// key: String,
410410
// ) -> Result<Option<String>, CommonError> {
411411
// // ... implementation using keyring crate ...
412-
// todo!("Implement actual logic in handlers/secrets.rs")
412+
// todo!("Implement actual logic in Handler/secrets.rs")
413413
// }
414414

415415
// pub async fn handle_store_secret_effect_logic<R: tauri::Runtime>(

Source/Handler/Storage.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ pub async fn handle_set_storage_value_effect_logic<R:Runtime>(
224224
}
225225

226226
// NEW:
227-
// // Example signature in handlers/storage.rs
227+
// // Example signature in Handler/storage.rs
228228
// pub async fn handle_get_storage_value_effect_logic<R: tauri::Runtime>(
229229
// app_handle: tauri::AppHandle<R>,
230230
// is_global_scope: bool,

Source/Handlers/Commands/CommandHandler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// File: Handlers/Commands/CommandHandler.rs
1+
// File: Handler/Commands/CommandHandler.rs
22
// Defines the CommandHandler enum, which categorizes different types of command
33
// handlers used within the application, such as native Rust handlers or those
44
// proxied to a sidecar.

Source/Handlers/Commands/Commands.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// File: Handlers/Commands/Commands.rs
1+
// File: Handler/Commands/Commands.rs
22
// Contains the primary logic for handling command execution, registration, and
33
// unregistration.
44

Source/Handlers/Commands/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// File: Handlers/Commands/mod.rs
1+
// File: Handler/Commands/mod.rs
22
// This module defines and exports handlers related to command execution and
33
// registration.
44

Source/Handlers/Config/Config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// File: Handlers/Config/Config.rs
1+
// File: Handler/Config/Config.rs
22
// Contains the primary logic for configuration management, including loading,
33
// merging, updating, and notifying about changes.
44

0 commit comments

Comments
 (0)