//! [`HttpService`] trait
usecrate::traits::handler::Handler;usehttp::Method;/// A trait for defining a service endpoint.
pubtraitHttpService<Args>: Handler<Args> {/// The HTTP method for the service endpoint.
constMETHOD: Method =Method::GET;/// The path of the service endpoint.
constPATH:&'staticstr="";}