Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/cli/src/lib.rs
3309 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
// todo: we should reduce the exported surface area over time as things are
7
// moved into a common CLI
8
pub mod auth;
9
pub mod constants;
10
#[macro_use]
11
pub mod log;
12
pub mod commands;
13
pub mod desktop;
14
pub mod options;
15
pub mod self_update;
16
pub mod state;
17
pub mod tunnels;
18
pub mod update_service;
19
pub mod util;
20
21
mod async_pipe;
22
mod download_cache;
23
mod json_rpc;
24
mod msgpack_rpc;
25
mod rpc;
26
mod singleton;
27
28