Initial API structre

This commit is contained in:
daladim 2021-02-18 12:02:04 +01:00
commit 58b96a89b0
9 changed files with 133 additions and 0 deletions

7
src/data/client.rs Normal file
View file

@ -0,0 +1,7 @@
pub struct Client {}
impl Client {
pub fn new(&mut self, url: String, username: String, password: String) -> Self {
Self{}
}
}