fabaccess-bffh/bffhd/capnp/user_system.rs

34 lines
452 B
Rust
Raw Normal View History

2022-03-15 20:00:43 +01:00
use api::usersystem_capnp::user_system::{
2022-03-15 20:00:43 +01:00
Server as UserSystem, info::Server as InfoServer, manage::Server as ManageServer,
};
2022-03-15 20:00:43 +01:00
2022-03-12 17:31:53 +01:00
use crate::session::SessionHandle;
2022-03-15 19:14:04 +01:00
#[derive(Clone)]
pub struct Users {
2022-03-12 17:31:53 +01:00
session: SessionHandle,
}
impl Users {
2022-03-12 17:31:53 +01:00
pub fn new(session: SessionHandle) -> Self {
Self {
2022-03-12 17:31:53 +01:00
session,
}
}
}
impl UserSystem for Users {
}
impl InfoServer for Users {
}
impl ManageServer for Users {
}