moving cloud stuff to the top level

This commit is contained in:
Jack Wright 2024-12-03 11:43:20 -08:00
parent a8d6991181
commit 34a0025aea
5 changed files with 4 additions and 6 deletions

View File

@ -31,8 +31,6 @@ async fn aws_creds(aws_config: &SdkConfig) -> Result<Option<Credentials>, ShellE
} }
} }
async fn aws_cloud_options() -> CloudOptions {
async fn aws_cloud_options() ->CloudOptions { CloudOptions::
} }

View File

@ -0,0 +1 @@
mod aws;

View File

@ -1 +0,0 @@
mod aws;

View File

@ -3,7 +3,6 @@ use nu_protocol::{ShellError, Span};
pub mod command; pub mod command;
mod utils; mod utils;
pub mod values; pub mod values;
mod cloud;
pub fn missing_flag_error(flag: &str, span: Span) -> ShellError { pub fn missing_flag_error(flag: &str, span: Span) -> ShellError {
ShellError::GenericError { ShellError::GenericError {

View File

@ -14,6 +14,7 @@ use log::debug;
use nu_plugin::{EngineInterface, Plugin, PluginCommand}; use nu_plugin::{EngineInterface, Plugin, PluginCommand};
mod cache; mod cache;
mod cloud;
pub mod dataframe; pub mod dataframe;
pub use dataframe::*; pub use dataframe::*;
use nu_protocol::{ast::Operator, CustomValue, LabeledError, ShellError, Span, Spanned, Value}; use nu_protocol::{ast::Operator, CustomValue, LabeledError, ShellError, Span, Spanned, Value};