mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2025-08-18 13:03:28 +02:00
feat: rename projects to point to github/kjuulh/dagger-sdk
This commit is contained in:
17
crates/dagger-bootstrap/src/main.rs
Normal file
17
crates/dagger-bootstrap/src/main.rs
Normal file
@@ -0,0 +1,17 @@
|
||||
use cli::Cli;
|
||||
|
||||
pub mod cli;
|
||||
mod cli_generate;
|
||||
|
||||
#[tokio::main]
|
||||
async fn main() -> eyre::Result<()> {
|
||||
color_eyre::install().unwrap();
|
||||
|
||||
let args = std::env::args();
|
||||
let args = args.collect::<Vec<String>>();
|
||||
let args = args.iter().map(|s| s.as_str()).collect::<Vec<&str>>();
|
||||
|
||||
Cli::new()?.execute(args.as_slice()).await?;
|
||||
|
||||
Ok(())
|
||||
}
|
Reference in New Issue
Block a user