aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index d9747c9..711c343 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -5,7 +5,7 @@ extern crate rocket;
extern crate rocket_blog;
#[get("/")]
-fn index() -> &'static str {
+fn index(conn: rocket_blog::DbConn) -> &'static str {
"Hallo, for faen!"
}