Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/cli/src/commands/context.rs
3314 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
use crate::{log, state::LauncherPaths};
7
8
use super::args::CliCore;
9
10
pub struct CommandContext {
11
pub log: log::Logger,
12
pub paths: LauncherPaths,
13
pub args: CliCore,
14
pub http: reqwest::Client,
15
}
16
17