Files
neon/proxy/src/serverless/error.rs
2024-10-29 15:44:45 +00:00

6 lines
101 B
Rust

use http::StatusCode;
pub trait HttpCodeError {
fn get_http_status_code(&self) -> StatusCode;
}