workflow_gpt/
lib.rs

1pub mod error;
2pub mod gpt;
3mod imports;
4pub mod result;
5
6pub mod prelude {
7    pub use crate::gpt::ChatGPT;
8}