mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
[pitboss] phase 17: Track L.15 — Gin / Echo / Fiber / Chi adapters + Axum / Actix / Rocket / Warp adapters
This commit is contained in:
parent
5393fe22f2
commit
2b96c6005b
33 changed files with 3247 additions and 27 deletions
|
|
@ -18,6 +18,11 @@ pub mod header_php;
|
|||
pub mod header_python;
|
||||
pub mod header_ruby;
|
||||
pub mod header_rust;
|
||||
pub mod go_chi;
|
||||
pub mod go_echo;
|
||||
pub mod go_fiber;
|
||||
pub mod go_gin;
|
||||
pub mod go_routes;
|
||||
pub mod java_deserialize;
|
||||
pub mod java_micronaut;
|
||||
pub mod java_quarkus;
|
||||
|
|
@ -63,6 +68,11 @@ pub mod ruby_marshal;
|
|||
pub mod ruby_rails;
|
||||
pub mod ruby_routes;
|
||||
pub mod ruby_sinatra;
|
||||
pub mod rust_actix;
|
||||
pub mod rust_axum;
|
||||
pub mod rust_rocket;
|
||||
pub mod rust_routes;
|
||||
pub mod rust_warp;
|
||||
pub mod xpath_java;
|
||||
pub mod xpath_js;
|
||||
pub mod xpath_php;
|
||||
|
|
@ -80,6 +90,10 @@ pub use header_php::HeaderPhpAdapter;
|
|||
pub use header_python::HeaderPythonAdapter;
|
||||
pub use header_ruby::HeaderRubyAdapter;
|
||||
pub use header_rust::HeaderRustAdapter;
|
||||
pub use go_chi::GoChiAdapter;
|
||||
pub use go_echo::GoEchoAdapter;
|
||||
pub use go_fiber::GoFiberAdapter;
|
||||
pub use go_gin::GoGinAdapter;
|
||||
pub use java_deserialize::JavaDeserializeAdapter;
|
||||
pub use java_micronaut::JavaMicronautAdapter;
|
||||
pub use java_quarkus::JavaQuarkusAdapter;
|
||||
|
|
@ -120,6 +134,10 @@ pub use ruby_hanami::RubyHanamiAdapter;
|
|||
pub use ruby_marshal::RubyMarshalAdapter;
|
||||
pub use ruby_rails::RubyRailsAdapter;
|
||||
pub use ruby_sinatra::RubySinatraAdapter;
|
||||
pub use rust_actix::RustActixAdapter;
|
||||
pub use rust_axum::RustAxumAdapter;
|
||||
pub use rust_rocket::RustRocketAdapter;
|
||||
pub use rust_warp::RustWarpAdapter;
|
||||
pub use xpath_java::XpathJavaAdapter;
|
||||
pub use xpath_js::XpathJsAdapter;
|
||||
pub use xpath_php::XpathPhpAdapter;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue