move cli to top level

This commit is contained in:
Connor Peet
2022-09-20 08:42:44 -07:00
parent 3ca6d73169
commit 3762635fe1
50 changed files with 1 additions and 2 deletions

19
cli/src/util.rs Normal file
View 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.
*--------------------------------------------------------------------------------------------*/
pub mod command;
pub mod errors;
pub mod http;
pub mod input;
pub mod io;
pub mod machine;
pub mod prereqs;
pub mod sync;
#[cfg(target_os = "linux")]
pub mod tar;
#[cfg(any(target_os = "windows", target_os = "macos"))]
pub mod zipper;