openserve 2.0.3

A modern, high-performance, AI-enhanced file server built in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Services Module
//!
//! This module contains the business logic of the application.
//! Each service encapsulates a specific domain of functionality.

pub mod auth;
pub mod file;
pub mod search;

pub use auth::AuthService;
pub use file::FileService;
pub use search::SearchService;