agentmux_srv\backend/
mod.rs

1// Copyright 2025-2026, AgentMux Corp.
2// SPDX-License-Identifier: Apache-2.0
3
4
5pub mod agent_config;
6pub mod agent_session;
7pub mod blockcontroller;
8/// Phase E.4.B Phase 4 — pure layout-tree helpers (Rust port of layoutTree.ts).
9pub mod layout;
10pub mod providers;
11pub mod config_watcher_fs;
12pub mod ijson;
13pub mod docsite;
14pub mod eventbus;
15pub mod agent_seed;
16pub mod history;
17pub mod lan_discovery;
18pub mod messagebus;
19pub mod oref;
20pub mod process_tracker;
21pub mod reactive;
22pub mod readutil;
23pub mod rpc;
24pub mod rpc_types;
25pub mod schema;
26pub mod service;
27pub mod session_archive;
28pub mod shellexec;
29pub mod shellintegration;
30pub mod sigutil;
31pub mod sysinfo;
32pub mod storage;
33pub mod subagent_watcher;
34pub mod syncbuf;
35pub mod tarcopy;
36pub mod trimquotes;
37pub mod userinput;
38pub mod utilds;
39pub mod utilfn;
40pub mod base;
41pub mod obj;
42pub mod rpc_fileutil;
43pub mod wconfig;
44pub mod wcore;
45pub mod wps;
46pub mod wshutil;
47pub mod tool_store;
48
49pub use oref::ORef;