gglib_core/services/
mod.rs

1//! Core services - the application's business logic layer.
2//!
3//! This module contains high-level service abstractions that orchestrate
4//! between ports (trait interfaces) and domain logic. Services here are
5//! pure orchestrators - they don't know about concrete implementations.
6
7mod app_core;
8mod chat_history;
9mod model_registrar;
10mod model_service;
11mod server_service;
12mod settings_service;
13
14pub use app_core::AppCore;
15pub use chat_history::ChatHistoryService;
16pub use model_registrar::ModelRegistrar;
17pub use model_service::ModelService;
18pub use server_service::ServerService;
19pub use settings_service::SettingsService;