Compare commits

...

3 commits

Author SHA1 Message Date
Dominic Grimm 00cabc308d
Update 2023-01-27 12:45:39 +01:00
Dominic Grimm 5d5724cac1
Update 2023-01-27 12:41:33 +01:00
Dominic Grimm d6b28aa323
Update 2023-01-27 12:33:38 +01:00
2 changed files with 6 additions and 3 deletions

Binary file not shown.

View file

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