Compare commits

..

No commits in common. "00cabc308d42f61d5885940f4a9244ca825aded4" and "0651a3929683ba9aace219b710951d555253ec26" have entirely different histories.

2 changed files with 3 additions and 6 deletions

Binary file not shown.

View file

@ -283,9 +283,6 @@ struct ApiTeachersResponse {
data: ApiTeachersResponseData, data: ApiTeachersResponseData,
} }
#[derive(Deserialize, Debug)]
pub struct ApiProfile {}
#[derive(Debug)] #[derive(Debug)]
pub struct Client { pub struct Client {
pub api_url: url::Url, pub api_url: url::Url,
@ -736,7 +733,7 @@ impl Client {
Ok(resp.data.elements) Ok(resp.data.elements)
} }
// pub async fn exams(&self) -> Result<()> { pub async fn exams(&self) -> Result<()> {
// Ok(()) Ok(())
// } }
} }