openapi_nexus_common/lib.rs
1//! Common types for OpenAPI code generation
2//!
3//! This crate provides shared types used across the OpenAPI generator workspace,
4//! particularly for error handling and source location tracking.
5
6pub mod language;
7pub mod location;
8pub mod warning;
9
10pub use language::Language;
11pub use location::SourceLocation;
12pub use warning::ParseWarning;