Skip to main content

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 generator;
7pub mod language;
8pub mod location;
9pub mod warning;
10
11pub use generator::GeneratorType;
12pub use language::Language;
13pub use location::SourceLocation;
14pub use warning::ParseWarning;