1
0
Fork 0
This commit is contained in:
Florian RICHER 2021-07-08 22:04:01 +02:00
parent 653267344f
commit ce7ef4807b
9 changed files with 77 additions and 23 deletions

8
src/controllers/mod.rs Normal file
View file

@ -0,0 +1,8 @@
use rocket::get;
pub mod tasks_controller;
#[get("/")]
pub fn index() -> &'static str {
"Hello, world!"
}