12 lines
238 B
Rust
12 lines
238 B
Rust
pub mod acp;
|
|
|
|
#[cfg(feature = "adapters")]
|
|
pub mod opencode;
|
|
#[cfg(feature = "adapters")]
|
|
pub mod rest;
|
|
|
|
pub use acp::{AcpAdapter, AcpTranslationError};
|
|
|
|
#[cfg(feature = "adapters")]
|
|
pub use opencode::{OpenCodeAdapter, TranslationError};
|