fabaccess-bffh/bffhd/server/users.rs
Nadja Reitzenstein 8db5580c90 Stuff
2021-12-06 21:53:42 +01:00

18 lines
173 B
Rust

use api::users::Server;
#[derive(Debug, Clone)]
pub struct Users {
}
impl Users {
pub fn new() -> Self {
Self {
}
}
}
impl Server for Users {
}