cli/
lib.rs

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
8pub mod auth;
9pub mod constants;
10#[macro_use]
11pub mod log;
12pub mod commands;
13pub mod desktop;
14pub mod options;
15pub mod self_update;
16pub mod state;
17pub mod tunnels;
18pub mod update_service;
19pub mod util;
20
21mod async_pipe;
22mod download_cache;
23mod json_rpc;
24mod msgpack_rpc;
25mod rpc;
26mod singleton;