Create base Rust project

This commit is contained in:
2023-05-05 19:53:17 +02:00
parent 87899f57e4
commit 68c27a310d
7 changed files with 1922 additions and 1 deletions

10
src/main.rs Normal file
View File

@@ -0,0 +1,10 @@
use kube::Client;
#[tokio::main]
async fn main() -> anyhow::Result<()> {
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
let client = Client::try_default().await?;
Ok(())
}