picoserve 0.18.0

An async no_std HTTP server suitable for bare-metal environments
Documentation
1
2
3
4
5
use crate::routing::{PathRouter, Router};

pub fn router(_: Router<impl PathRouter>) {}

pub fn router_with_state<State>(_: Router<impl PathRouter<State>, State>) {}