/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45// todo: we should reduce the exported surface area over time as things are6// moved into a common CLI7pub mod auth;8pub mod constants;9#[macro_use]10pub mod log;11pub mod commands;12pub mod desktop;13pub mod options;14pub mod self_update;15pub mod state;16pub mod tunnels;17pub mod update_service;18pub mod util;1920mod async_pipe;21mod download_cache;22mod json_rpc;23mod msgpack_rpc;24mod rpc;25mod singleton;262728