feat: implement rest vertical slice

This commit is contained in:
a.tolmachev
2026-03-25 18:28:44 +03:00
parent 649a2ede0d
commit 8a7e8dbd64
15 changed files with 1547 additions and 23 deletions
+7 -3
View File
@@ -1,3 +1,7 @@
pub fn crate_name() -> &'static str {
"mcpaas-adapter-rest"
}
mod client;
mod error;
mod model;
pub use client::RestAdapter;
pub use error::RestAdapterError;
pub use model::{RestRequest, RestResponse};