pub async fn get() -> Result<impl Reply, Rejection>Expand description
Handles a GET on the main /version path, returning the version number of this service.
§Returns
The response that can be send back to the client. Simply contains the string ‘vXX.YY.ZZ’, where
XXis the major version;YYis the minor version; andZZis the patch version.
§Errors
This function doesn’t usually error.