This commit is contained in:
Elijah McMorris 2023-08-10 10:10:45 +00:00 committed by NexVeridian@gmail.com
parent 1eda4729d4
commit fdc0515939
5 changed files with 183 additions and 82 deletions

View file

@ -19,7 +19,7 @@ lazy_static! {
static ref SOURCE: Source = match env::var("ARK_SOURCE") {
Ok(val) =>
Source::from_str(val.as_str()).expect("Env string ARK_SOURCE is not in enum Source"),
Err(_e) => Source::ApiIncremental,
Err(_) => Source::ApiIncremental,
};
}