mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 20:57:12 +00:00
- Start separating a "standalone" CLI. This is a little awkward with clap- derive, but I got it working. Detection of whether the CLI _is_ standalone is still todo. - Remove the old ad-hoc update code for code-server, and use the update service instead. - Fix some of the "permission denied" errors people got while updating before. We need to rename the old running binary, not just overwrite it.
20 lines
658 B
Rust
20 lines
658 B
Rust
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
// todo: we should reduce the exported surface area over time as things are
|
|
// moved into a common CLI
|
|
pub mod auth;
|
|
pub mod constants;
|
|
#[macro_use]
|
|
pub mod log;
|
|
pub mod commands;
|
|
pub mod desktop;
|
|
pub mod options;
|
|
pub mod state;
|
|
pub mod tunnels;
|
|
pub mod self_update;
|
|
pub mod update_service;
|
|
pub mod util;
|