llm_observatory_core/lib.rs
1// Copyright 2025 LLM Observatory Contributors
2// SPDX-License-Identifier: Apache-2.0
3
4//! Core types, traits, and utilities for LLM Observatory.
5//!
6//! This crate provides the foundational types and traits used across all
7//! LLM Observatory components, including span definitions, provider interfaces,
8//! and shared utilities.
9
10#![warn(missing_docs, rust_2018_idioms)]
11#![deny(unsafe_code)]
12
13pub mod error;
14pub mod provider;
15pub mod span;
16pub mod types;
17
18pub use error::{Error, Result};