tsk-71: Removed underscore from method

This commit is contained in:
2025-10-18 22:07:52 -04:00
parent 380d28a86e
commit 56205fc0d5

View File

@@ -14,7 +14,7 @@ pub struct LoginResult {
impl LoginResult { impl LoginResult {
pub fn _to_json(&self) -> Result<String, serde_json::Error> { pub fn to_json(&self) -> Result<String, serde_json::Error> {
serde_json::to_string_pretty(&self) serde_json::to_string_pretty(&self)
} }