mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 12:04:04 +01:00
move cli to top level
This commit is contained in:
15
cli/src/commands/context.rs
Normal file
15
cli/src/commands/context.rs
Normal file
@@ -0,0 +1,15 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
use crate::{log, state::LauncherPaths};
|
||||
|
||||
use super::args::Cli;
|
||||
|
||||
pub struct CommandContext {
|
||||
pub log: log::Logger,
|
||||
pub paths: LauncherPaths,
|
||||
pub args: Cli,
|
||||
pub http: reqwest::Client,
|
||||
}
|
||||
Reference in New Issue
Block a user