File size: 1,081 Bytes
d90101d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | mod agent_registry;
mod app_config;
mod attachment;
mod auth;
mod clipper;
mod command;
mod context_engine;
mod conversation;
mod discovery;
mod error;
mod fd;
mod fd_git;
mod fd_walker;
mod forge_services;
mod instructions;
mod mcp;
mod policy;
mod provider_auth;
mod provider_service;
mod range;
mod sync;
mod template;
mod tool_services;
mod utils;
pub use app_config::*;
pub use clipper::*;
pub use command::*;
pub use context_engine::*;
pub use discovery::*;
pub use error::*;
pub use forge_services::*;
pub use instructions::*;
pub use policy::*;
pub use provider_auth::*;
/// Converts a type from its external representation into its domain model
/// representation.
pub trait IntoDomain {
type Domain;
fn into_domain(self) -> Self::Domain;
}
/// Converts a domain model type into its external representation.
pub trait FromDomain<T> {
/// Converts from a domain type to the external type
///
/// # Errors
///
/// Returns an error if the conversion fails
fn from_domain(value: T) -> anyhow::Result<Self>
where
Self: Sized;
}
|