Moved hello world to own module

master
Jef Roosens 2021-03-05 20:58:33 +01:00
parent b49a01ab03
commit 57de7c66b3
Signed by: Jef Roosens
GPG Key ID: 955C0660072F691F
7 changed files with 9 additions and 5 deletions

View File

1
src/hello/mod.rs 100644
View File

@ -0,0 +1 @@
pub mod routes;

View File

@ -0,0 +1,4 @@
#[get("/world")]
pub fn world() -> &'static str {
"Hello, world!"
}

View File

@ -0,0 +1 @@
mod ivago.controller;

0
src/ivago/mod.rs 100644
View File

View File

@ -0,0 +1 @@
mod ivago.routes;

View File

@ -2,11 +2,8 @@
#[macro_use] extern crate rocket;
#[get("/")]
fn index() -> &'static str {
"Hello, world!"
}
mod hello;
fn main() {
rocket::ignite().mount("/", routes![index]).launch();
rocket::ignite().mount("/hello", routes![hello::routes::world]).launch();
}