Rename client and refactors dialog

This commit is contained in:
2024-02-07 20:19:11 +00:00
parent 4f49ec8478
commit 5ab9f353bc
5 changed files with 38 additions and 35 deletions

View File

@@ -1,12 +1,12 @@
mod conversation;
mod client;
mod dialogue;
pub mod error;
mod token_provider;
mod types;
mod vertex_client;
pub mod prelude {
pub use crate::conversation::*;
pub use crate::client::*;
pub use crate::dialogue::*;
pub use crate::token_provider::*;
pub use crate::types::*;
pub use crate::vertex_client::*;
}