korrosync 0.4.0

A KOReader Sync Server
Documentation
1
2
3
4
5
6
7
use axum::http::StatusCode;
use tracing::{Level, instrument};

#[instrument(level = Level::DEBUG)]
pub async fn fallback() -> StatusCode {
    StatusCode::NOT_FOUND
}