normogen/backend/src/models/mod.rs
goose eb0e2cc4b5
Some checks failed
Lint and Build / Lint (push) Has been cancelled
Lint and Build / Build (push) Has been cancelled
Lint and Build / Docker Build (push) Has been cancelled
feat(backend): Phase 2.5 permission and share models
2026-02-15 21:08:31 -03:00

19 lines
396 B
Rust

### /home/asoliver/desarrollo/normogen/./backend/src/models/mod.rs
```rust
1: pub mod user;
2: pub mod family;
3: pub mod profile;
4: pub mod health_data;
5: pub mod lab_result;
6: pub mod medication;
7: pub mod appointment;
8: pub mod share;
9: pub mod refresh_token;
```
pub mod permission;
pub mod share;
pub use permission::Permission;
pub use share::Share;
pub use share::ShareRepository;