mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-03 23:06:49 +01:00
move cli to top level
This commit is contained in:
19
cli/src/lib.rs
Normal file
19
cli/src/lib.rs
Normal file
@@ -0,0 +1,19 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* 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 tunnels;
|
||||
pub mod state;
|
||||
pub mod update;
|
||||
pub mod update_service;
|
||||
pub mod util;
|
||||
Reference in New Issue
Block a user