Skip to content

Commit

Permalink
refactor(cli): ♻️ add fallback to Threshold dosage
Browse files Browse the repository at this point in the history
  • Loading branch information
keinsell committed Jun 22, 2024
1 parent cdeaccf commit 23d5059
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion apps/cli/src/core/route_of_administration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ impl FindClassificationByDosage for RouteOfAdministrationDosages {
return Ok(*classification);
}
}
Err("Dosage classification not found".to_string())

return Ok(DosageClassification::Threshold);
}
}

Expand Down
2 changes: 1 addition & 1 deletion apps/functions/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# `/functions`

Directory contains functions that can perform specific computation logic, these are deployed in single docker containers or using some serverless-like framerwork.
Directory contains functions that can perform specific computation logic, these are deployed in single docker containers or using some serverless-like framework.

0 comments on commit 23d5059

Please sign in to comment.