fix: remove tarpaulin annotations

This commit is contained in:
Aravinth Manivannan
2025-10-02 14:00:16 +05:30
parent 5c29c2e71e
commit a05f8ec6f0
6 changed files with 0 additions and 32 deletions

View File

@@ -56,7 +56,6 @@ pub struct Smtp {
}
impl Server {
#[cfg(not(tarpaulin_include))]
pub fn get_ip(&self) -> String {
format!("{}:{}", self.ip, self.port)
}
@@ -205,7 +204,6 @@ const DEPRECATED_ENV_VARS: [(&str, &str); 23] = [
("smtp.port", "MCAPTCHA_SMTP_PORT"),
];
#[cfg(not(tarpaulin_include))]
impl Settings {
pub fn new() -> Result<Self, ConfigError> {
let mut s = Config::builder();