1 2 3 4 5 6 7 8 9 10 11
use actix_web::Scope; use actix_web::web; use crate::controllers; pub fn tabular() -> Scope { web::scope("/tabular").route( "/{commit_or_branch:.*}", web::get().to(controllers::entries::list_tabular), ) }