oxidite-core
Core HTTP server, router, request/response types, and extractors for Oxidite.
Installation
[]
= "2.1.0"
Key Components
Router: method/path routing with path params and wildcard support.Server: Hyper-based async server integration for Oxidite services.OxiditeRequest/OxiditeResponse: request/response core types.- Extractors:
Path,Query,Json,Form,State,Cookies,Body.
Basic Example
use ;
async
Notes
HEADrequests automatically fall back to matchingGETroutes.- If a path exists for another method, the router returns
MethodNotAllowed.