LCOV - code coverage report | ||||||||||||||||||||||
![]() | ||||||||||||||||||||||
|
||||||||||||||||||||||
![]() |
Line data Source code 1 0 : pub(crate) fn connstring(host_port: &str, jwt: Option<&str>) -> String { 2 0 : let colon_and_jwt = if let Some(jwt) = jwt { 3 0 : format!(":{jwt}") // TODO: urlescape 4 : } else { 5 0 : String::new() 6 : }; 7 0 : format!("postgres://postgres{colon_and_jwt}@{host_port}") 8 0 : } |
![]() |
Generated by: LCOV version 2.1-beta |