terracotta 0.4.2

Boilerplate webserver application based on Axum
Documentation
//! Response data for health check functionality.



//		Packages																										

use serde::Serialize;

#[cfg(feature = "utoipa")]
use utoipa::ToSchema;



//		Structs																											

//		HealthVersionResponse													
/// The current version information returned by the `/api/version` endpoint.
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize)]
#[cfg_attr(feature = "utoipa", derive(ToSchema))]
#[non_exhaustive]
pub struct HealthVersionResponse {
	//		Public properties													
	/// The current version of the application.
	pub version: String,
}