Release Notes: - N/A --------- Co-authored-by: Marshall <marshall@zed.dev>
9 lines
183 B
Rust
9 lines
183 B
Rust
use collab::env::get_dotenv_vars;
|
|
|
|
fn main() -> anyhow::Result<()> {
|
|
for (key, value) in get_dotenv_vars()? {
|
|
println!("export {}=\"{}\"", key, value);
|
|
}
|
|
Ok(())
|
|
}
|