remove debug impls

This commit is contained in:
Mylloon 2022-08-16 15:06:03 +02:00
parent 732f56f0be
commit 806f210c0f
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -1,4 +1,4 @@
#[derive(Debug, Clone)]
#[derive(Clone)]
pub struct Course {
/// Course's name
pub name: String,
@ -27,7 +27,6 @@ pub struct Course {
pub dtend: Option<chrono::DateTime<chrono::Utc>>,
}
#[derive(Debug)]
pub struct Day {
/// Day's name
pub name: String,