mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-14 01:34:20 +01:00
Publish editor and standalone agent hosts through a shared user-data registry with cross-process locking. Update CLI discovery and management commands to work across all registered hosts without the legacy lockfile. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
22 lines
637 B
Rust
22 lines
637 B
Rust
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
mod context;
|
|
|
|
pub mod agent;
|
|
pub mod agent_discovery;
|
|
pub mod agent_host;
|
|
pub mod agent_kill;
|
|
pub mod agent_logs;
|
|
pub mod agent_ps;
|
|
pub mod agent_stop;
|
|
pub mod args;
|
|
pub mod output;
|
|
pub mod serve_web;
|
|
pub mod tunnels;
|
|
pub mod update;
|
|
pub mod version;
|
|
pub use context::CommandContext;
|