macpepdb 1.1.0

Large peptide database for mass spectrometry
Documentation
1
2
3
4
5
6
7
8
9
// 3rd party imports
use axum::http::StatusCode;

// internal imports
use crate::web::web_error::WebError;

pub async fn page_not_found() -> WebError {
    WebError::new(StatusCode::NOT_FOUND, "Page not found.".to_string())
}