blob: face4223c13395c859c5416b4c05956fab0c3cc1 [file] [log] [blame]
// Take a look at the license at the top of the repository in the LICENSE file.
use crate::{Gid, Group, GroupInner};
impl GroupInner {
pub(crate) fn id(&self) -> &Gid {
&self.id
}
pub(crate) fn name(&self) -> &str {
&self.name
}
}
pub(crate) fn get_groups(_: &mut Vec<Group>) {}