StartRNR/cli/src/main.rs

10 lines
179 B
Rust
Raw Normal View History

2023-08-26 23:47:23 -04:00
use std::env;
fn get_auth_key() -> Option<String> {
env::var("AUTH_KEY").ok()
}
2023-08-26 03:37:24 -04:00
fn main() {
2023-08-26 23:47:23 -04:00
let _auth_key = get_auth_key().expect("Could not find authorization key");
2023-08-26 03:37:24 -04:00
}