fabaccess-bffh/bffhd/server/users.rs

18 lines
173 B
Rust
Raw Normal View History

2021-12-06 21:53:42 +01:00
use api::users::Server;
#[derive(Debug, Clone)]
pub struct Users {
}
impl Users {
pub fn new() -> Self {
Self {
}
}
}
impl Server for Users {
}