Private
Public Access
1
0

kpcli: client: adds printing of conversations

This commit is contained in:
2024-11-10 19:40:39 -08:00
parent 6b9f528cbf
commit 0e8b8f339a
9 changed files with 492 additions and 59 deletions

View File

@@ -1,7 +1,21 @@
mod api;
pub mod api;
pub mod model;
pub use self::api::APIInterface;
use ctor::ctor;
#[cfg(test)]
pub mod tests;
extern crate env_logger;
fn initialize_logging() {
env_logger::Builder::from_default_env()
.format_timestamp_secs()
.init();
}
#[ctor]
fn init() {
initialize_logging();
}