()
| 6 | mod service; |
| 7 | |
| 8 | pub(crate) fn version_module() -> Scope { |
| 9 | web::scope("/collections/{collection_id}/versions") |
| 10 | .route("", web::get().to(controller::list_versions)) |
| 11 | .route("/current", web::get().to(controller::get_current_version)) |
| 12 | // .route("/current", web::put().to(controller::set_current_version)) |
| 13 | } |
no outgoing calls
no test coverage detected