tiny steps towards unit testing for each resource

This commit is contained in:
Lennart
2025-06-27 14:33:25 +02:00
parent e2f5773e3c
commit 86ae31e94c
7 changed files with 85 additions and 8 deletions

View File

@@ -11,8 +11,10 @@ mod service;
pub use service::*;
mod prop;
pub use prop::*;
#[cfg(test)]
pub mod tests;
#[derive(Clone)]
#[derive(Debug, Clone)]
pub struct PrincipalResource {
principal: Principal,
members: Vec<String>,