Revert hello_person to pre-testing.

This commit is contained in:
Sergio Benitez 2016-12-19 01:57:13 -08:00
parent dd7e95b3c5
commit 123c684f62
1 changed files with 1 additions and 1 deletions

View File

@ -16,5 +16,5 @@ fn hi<'r>(name: &'r str) -> &'r str {
}
fn main() {
rocket::ignite().mount("/<test>", routes![hello, hi]).launch();
rocket::ignite().mount("/", routes![hello, hi]).launch();
}