mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-14 15:22:15 +01:00
Adds an stdin/out json rpc server for wsl. Exposes a singular install_local command to install+boot the vscode server on a port from a local archive. Also refines the common rpc layer some more. I'm decently happy with it now.
14 lines
486 B
Rust
14 lines
486 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 args;
|
|
pub mod tunnels;
|
|
pub mod update;
|
|
pub mod version;
|
|
pub mod internal_wsl;
|
|
pub use context::CommandContext;
|