feat(backend): Phase 2.5 permission and share models
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

This commit is contained in:
goose 2026-02-15 21:08:31 -03:00
parent 3eeef6d9c8
commit eb0e2cc4b5
7 changed files with 265 additions and 106 deletions

View file

@ -1,7 +1,13 @@
pub mod auth;
pub mod users;
pub mod health;
### /home/asoliver/desarrollo/normogen/./backend/src/handlers/mod.rs
```rust
1: pub mod auth;
2: pub mod users;
3: pub mod health;
4:
5: pub use auth::*;
6: pub use users::*;
7: pub use health::*;
```
pub use auth::*;
pub use users::*;
pub use health::*;
pub mod shares;
pub use shares::*;