mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-20 23:29:57 +01:00
1b5fd140fb
* wip on singleton * wip * windows support * wip * wip * fix clippy
25 lines
676 B
Rust
25 lines
676 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 is_integrated;
|
|
|
|
pub mod command;
|
|
pub mod errors;
|
|
pub mod http;
|
|
pub mod input;
|
|
pub mod io;
|
|
pub mod machine;
|
|
pub mod prereqs;
|
|
pub mod ring_buffer;
|
|
pub mod sync;
|
|
pub use is_integrated::*;
|
|
pub mod file_lock;
|
|
|
|
#[cfg(target_os = "linux")]
|
|
pub mod tar;
|
|
|
|
#[cfg(any(target_os = "windows", target_os = "macos"))]
|
|
pub mod zipper;
|