Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(feat) Added mount! macro to build mounts. #93

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

turnage
Copy link

@turnage turnage commented Jul 2, 2017

I saw that #79 hasn't gotten attention in months and I also wanted this feature.

This adds a mount! like the router! macro from the router crate. Its only value is that I can write

mount!("/assets" => Static::new("target/assets"))

in places I previously had to write

{
    let mount = Mount::new();
    mount.mount("/assets", Static::new("target/assets"));
    mount
}

Rendered preview of docs:
screencap

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant