1 2 3 4 5 6 7 8 9 10
use actix_web::{Scope, web}; use crate::controllers; pub fn migrations() -> Scope { web::scope("/migrations").route( "/{migration_name}", web::post().to(controllers::migrations::run), ) }