gitbutler/crates/gitbutler-core/src/users.rs
Sebastian Thiel 26c39f2a3f
chore: move library from top-level to gitbutler-core
This better expresses what it does, and leaves the `gitbutler-app`
in the top-level where it can serve as visible entrypoint.
2024-03-30 22:39:21 +01:00

7 lines
91 B
Rust

pub mod controller;
pub mod storage;
mod user;
pub use controller::*;
pub use user::User;