You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
pub mod handlers { |
|
|
|
use warp::{Reply, Rejection}; |
|
use warp::http::Response; |
|
|
|
pub async fn list() -> Result<impl Reply, Rejection> { |
|
Ok("test") |
|
} |
|
|
|
pub async fn post(name: String) -> Result<impl Reply, Rejection> { |
|
Ok("Post test") |
|
} |
|
}
|
|
|