We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 77e06ca + 5b49d88 commit 4c13376Copy full SHA for 4c13376
.gitignore
@@ -12,3 +12,7 @@ Cargo.lock
12
13
# MSVC Windows builds of rustc generate these, which store debugging information
14
*.pdb
15
+
16
+# Per Editor Configuration
17
+.idea/
18
+.vscode/
Cargo.toml
@@ -0,0 +1,7 @@
1
+[package]
2
+name = "bibimbap-backend"
3
+version = "0.1.0"
4
+edition = "2021"
5
6
+[dependencies]
7
+rocket = "0.5.1"
src/main.rs
@@ -0,0 +1,12 @@
+#[macro_use]
+extern crate rocket;
+#[get("/")]
+fn index() -> &'static str {
+ "Hello, world!"
+}
8
9
+#[launch]
10
+fn rocket() -> _ {
11
+ rocket::build().mount("/", routes![index])
0 commit comments