diff --git a/crates/backend/src/error.rs b/crates/backend/src/error.rs index 50f0872..8ca3566 100644 --- a/crates/backend/src/error.rs +++ b/crates/backend/src/error.rs @@ -54,7 +54,6 @@ impl From> for ApiError { #[derive(Serialize, ToSchema)] pub struct MessageResponse { - /// Response message pub message: String, } diff --git a/crates/backend/src/main.rs b/crates/backend/src/main.rs index 35a9290..fbb3dbb 100644 --- a/crates/backend/src/main.rs +++ b/crates/backend/src/main.rs @@ -24,8 +24,8 @@ struct AppConfig { #[openapi( info( title = "PGG API", - description = "API for the PGG (Paket Verfolgungs Programm) application", - version = "1.0.0", + description = "API for the PGG (Peer Group Grading) application", + version = "0.0.1-rc1", ), paths( controller::auth::login,