embacle_server/lib.rs
1// ABOUTME: Library root re-exporting server modules for integration testing
2// ABOUTME: Enables tests/ to access router, state, types, and handler modules
3//
4// SPDX-License-Identifier: Apache-2.0
5// Copyright (c) 2026 dravr.ai
6
7pub mod auth;
8pub mod completions;
9pub mod health;
10pub mod models;
11pub mod openai_types;
12pub mod provider_resolver;
13pub mod router;
14pub mod runner;
15pub mod state;
16pub mod streaming;