Private
Public Access
1
0

Started work on http server

This commit is contained in:
2024-04-24 23:41:42 -07:00
parent 48dcf9daca
commit cf4195858e
4 changed files with 590 additions and 1 deletions

View File

@@ -1,6 +1,9 @@
use async_trait::async_trait;
pub use crate::model::Conversation;
pub mod http_client;
pub use http_client::HTTPClient;
#[async_trait]
pub trait APIInterface {
type Error;