summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/src/errors.rs6
-rw-r--r--server/src/main.rs3
2 files changed, 5 insertions, 4 deletions
diff --git a/server/src/errors.rs b/server/src/errors.rs
index b5f124b..cf59d0c 100644
--- a/server/src/errors.rs
+++ b/server/src/errors.rs
@@ -5,14 +5,14 @@ use axum::{
};
use serde_json::json;
-pub enum Error {
+pub enum AppError {
Generic,
}
-impl IntoResponse for Error {
+impl IntoResponse for AppError {
fn into_response(self) -> Response {
let (status, error_message) = match self {
- Error::Generic => (
+ AppError::Generic => (
StatusCode::INTERNAL_SERVER_ERROR,
"Generic error, can't find why",
),
diff --git a/server/src/main.rs b/server/src/main.rs
index 810e202..2f4a727 100644
--- a/server/src/main.rs
+++ b/server/src/main.rs
@@ -1,3 +1,4 @@
+mod db;
mod errors;
mod logger;
@@ -50,7 +51,7 @@ async fn create_app() -> Router {
}
// Example root which says hi
-async fn hej() -> Result<Json<Hej>, errors::Error> {
+async fn hej() -> Result<Json<Hej>, errors::AppError> {
Ok(Json(Hej::new("hej verden".to_string())))
}