StartRNR/cli/src/main.rs

14 lines
210 B
Rust
Raw Normal View History

2023-08-26 23:47:23 -04:00
use std::env;
2023-08-26 23:48:13 -04:00
mod queries;
use queries::*;
2023-08-26 23:47:23 -04:00
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
}