kanidm/rsidmd/src/lib/idm/group.rs
Firstyear da1af02f2b
3 authentication ()
This adds support for authentication and credential storage to the server. 
It also adds account recovery and options for integration test fixtures, refactors
to make the client library easier to manage, and support clean seperation of the
proto vs lib.
2019-09-04 11:06:37 +10:00

20 lines
266 B
Rust

use rsidm_proto::v1::Group as ProtoGroup;
#[derive(Debug, Clone)]
pub struct Group {
// name
// uuid
}
impl Group {
/*
pub fn new() -> Self {
Group {}
}
*/
pub fn into_proto(&self) -> ProtoGroup {
unimplemented!();
}
}