1 2 3 4 5 6 7
use super::*; pub mod get; pub fn service() -> Scope { web::scope("/validate").service(get::route) }