filigree 0.4.1

Filigree web application framework
Documentation
1
2
3
4
5
6
7
8
//! [htmx](https://htmx.org) Utilities

use http::StatusCode;

/// A StatusCode of 286, which indicates that htmx should stop polling
pub fn status_stop_polling() -> http::StatusCode {
    StatusCode::from_u16(286).unwrap()
}