Skip to content

Commit d29507c

Browse files
refactor(Mountain): comment out unused core modules during restructuring
Temporarily disable multiple Mountain backend modules and handler subsystems to simplify the codebase while finalizing the component architecture for Land's MVP. This change: - Removes immediate dependencies on experimental handler implementations (commands, config, diagnostics) - Comments out provisional workspace FS API and extension status tracking that hasn't been integrated with Cocoon - Disables early prototype UI response handling (sky_ui_responses) pending Sky frontend integration - Prepares for dependency injection pattern by reducing direct module couplings This cleanup aligns with Path A focus on stabilizing core Mountain-Track-Vine interactions first, allowing incremental reimplementation of features against solidified RPC protocols. Commented modules represent experimental components that will be reintroduced through DI once the core dispatcher and AppState patterns are fully validated.
1 parent 85428b2 commit d29507c

1 file changed

Lines changed: 30 additions & 30 deletions

File tree

Source/Library.rs

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -8,60 +8,60 @@ fn main() { Binary::Fn::Fn(); }
88
pub mod Binary;
99

1010
// NEW:
11-
pub mod app_state;
11+
// pub mod app_state;
1212

13-
pub mod environment;
13+
// pub mod environment;
1414

15-
pub mod handlers {
16-
pub mod commands;
15+
// pub mod handlers {
16+
// pub mod commands;
1717

18-
pub mod config;
18+
// pub mod config;
1919

20-
pub mod diagnostics;
20+
// pub mod diagnostics;
2121

22-
pub mod documents;
22+
// pub mod documents;
2323

24-
pub mod enablement;
24+
// pub mod enablement;
2525

26-
pub mod native_fs;
26+
// pub mod native_fs;
2727

28-
pub mod output;
28+
// pub mod output;
2929

30-
pub mod process_mgmt;
30+
// pub mod process_mgmt;
3131

32-
pub mod protocol;
32+
// pub mod protocol;
3333

34-
pub mod proxy;
34+
// pub mod proxy;
3535

36-
pub mod registry;
36+
// pub mod registry;
3737

38-
pub mod secrets;
38+
// pub mod secrets;
3939

40-
pub mod storage;
40+
// pub mod storage;
4141

42-
pub mod terminal;
42+
// pub mod terminal;
4343

44-
pub mod ui;
44+
// pub mod ui;
4545

46-
pub mod workspace;
46+
// pub mod workspace;
4747

48-
pub mod workspace_fs_api;
48+
// pub mod workspace_fs_api;
4949

50-
pub mod error_utils;
50+
// pub mod error_utils;
5151

52-
pub mod extension_status;
52+
// pub mod extension_status;
5353

54-
pub mod sky_ui_responses;
55-
}
54+
// pub mod sky_ui_responses;
55+
// }
5656

57-
pub mod Entry;
57+
// pub mod Entry;
5858

59-
pub mod mist;
59+
// pub mod mist;
6060

61-
pub mod track;
61+
// pub mod track;
6262

63-
pub mod rpc;
63+
// pub mod rpc;
6464

65-
pub mod runtime;
65+
// pub mod runtime;
6666

67-
pub mod vine;
67+
// pub mod vine;

0 commit comments

Comments
 (0)