cargo clippy

This commit is contained in:
Graham McIntire 2026-01-09 14:00:37 -06:00
parent 979369b502
commit d0a67798f8
No known key found for this signature in database

View file

@ -21,7 +21,7 @@ impl Timestamp {
Self::now().secs - self.secs
}
pub fn to_rfc3339(&self) -> String {
pub fn to_rfc3339(self) -> String {
// Convert Unix timestamp to RFC3339 format
// This is a simplified implementation that produces UTC timestamps
let secs = self.secs;