mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-11 01:53:23 +01:00
34 lines
443 B
Rust
34 lines
443 B
Rust
|
use capnp::capability::Promise;
|
||
|
use capnp::Error;
|
||
|
use capnp_rpc::pry;
|
||
|
|
||
|
use api::usersystem_capnp::user_system::{
|
||
|
Server as UserSystem,
|
||
|
info, info::Server as InfoServer,
|
||
|
manage, manage::Server as ManageServer,
|
||
|
};
|
||
|
|
||
|
#[derive(Debug, Clone)]
|
||
|
pub struct Users {
|
||
|
|
||
|
}
|
||
|
|
||
|
impl Users {
|
||
|
pub fn new() -> Self {
|
||
|
Self {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl UserSystem for Users {
|
||
|
|
||
|
}
|
||
|
|
||
|
impl InfoServer for Users {
|
||
|
|
||
|
}
|
||
|
|
||
|
impl ManageServer for Users {
|
||
|
|
||
|
}
|