minor cleanup stuff

This commit is contained in:
Lennart
2024-11-03 23:21:27 +01:00
parent e9dc8e01d5
commit 4fd32b3f33
7 changed files with 9 additions and 10 deletions

View File

@@ -3,7 +3,7 @@ use actix_web::{
http::{header, StatusCode},
FromRequest, HttpMessage, HttpResponse, ResponseError,
};
use derive_more::{derive::Deref, Display};
use derive_more::Display;
use serde::{Deserialize, Serialize};
use std::future::{ready, Ready};

View File

@@ -2,5 +2,5 @@ use ical::parser::ical::component::IcalJournal;
#[derive(Debug, Clone)]
pub struct JournalObject {
pub(crate) journal: IcalJournal,
pub journal: IcalJournal,
}

View File

@@ -2,5 +2,5 @@ use ical::parser::ical::component::IcalTodo;
#[derive(Debug, Clone)]
pub struct TodoObject {
pub(crate) todo: IcalTodo,
pub todo: IcalTodo,
}