fabaccess-bffh/bffhd/server/users.rs

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 {
}