Remove extraneous code

This commit is contained in:
Nettika 2026-01-25 15:12:05 -08:00
parent 497144029e
commit 4a65ae2da0
No known key found for this signature in database

View file

@ -6,21 +6,3 @@ pub struct Project {
pub percentage_completed: i32,
pub archived: bool,
}
impl Project {
pub fn new(title: String) -> Self {
let now = std::time::SystemTime::now()
.duration_since(std::time::UNIX_EPOCH)
.unwrap()
.as_secs() as i64;
Self {
id: 0,
title,
created_time: now,
last_modified_time: now,
percentage_completed: 0,
archived: false,
}
}
}