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