mirror of
https://github.com/nushell/nushell.git
synced 2025-01-10 08:18:57 +01:00
moving cloud stuff to the top level
This commit is contained in:
parent
a8d6991181
commit
34a0025aea
@ -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::
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
1
crates/nu_plugin_polars/src/cloud/mod.rs
Normal file
1
crates/nu_plugin_polars/src/cloud/mod.rs
Normal file
@ -0,0 +1 @@
|
|||||||
|
mod aws;
|
@ -1 +0,0 @@
|
|||||||
mod aws;
|
|
@ -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 {
|
||||||
|
@ -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};
|
||||||
|
Loading…
Reference in New Issue
Block a user