kitchen-freezer/src/data/client.rs

7 lines
143 B
Rust
Raw Normal View History

2021-02-18 12:02:04 +01:00
pub struct Client {}
impl Client {
pub fn new(&mut self, url: String, username: String, password: String) -> Self {
Self{}
}
}