mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-27 02:45:01 +00:00
14 lines
259 B
Rust
14 lines
259 B
Rust
![]() |
use std::sync::Arc;
|
||
|
|
||
|
use flowy_user::event_map::UserAuthService;
|
||
|
|
||
|
pub mod local_server;
|
||
|
mod request;
|
||
|
mod response;
|
||
|
pub mod self_host;
|
||
|
pub mod supabase;
|
||
|
|
||
|
pub trait AppFlowyServer: Send + Sync + 'static {
|
||
|
fn user_service(&self) -> Arc<dyn UserAuthService>;
|
||
|
}
|