Skip to content

Commit

Permalink
🔧 Cleaned Up
Browse files Browse the repository at this point in the history
  • Loading branch information
nwrenger committed May 15, 2023
1 parent d5250ef commit fc22f3d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ use chrono::NaiveDate;
use db::project::{Absence, Criminal, Database, Error, Result, User};
use db::stats::Stats;

const KEY_A: &'static str = option_env!("SNDM_KEY_A").unwrap_or("");
const KEY_W: &'static str = option_env!("SNDM_KEY_W").unwrap_or("");
const KEY_E: &'static str = option_env!("SNDM_KEY_E").unwrap_or("");
const KEY_P: &'static str = option_env!("SNDM_KEY_P").unwrap_or("");
const KEY_A: &str = option_env!("SNDM_KEY_A").unwrap_or("");
const KEY_W: &str = option_env!("SNDM_KEY_W").unwrap_or("");
const KEY_E: &str = option_env!("SNDM_KEY_E").unwrap_or("");
const KEY_P: &str = option_env!("SNDM_KEY_P").unwrap_or("");

pub struct GeneralApiKey;

Expand Down

0 comments on commit fc22f3d

Please sign in to comment.