diff --git a/README.md b/README.md index b4e2713..6f447aa 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ # BingoBongo +Bingo card web application + +Backend `Rust` @benjamyn +Frontend `TBD` @balgie +Docs `MD files` @here + diff --git a/backend/Cargo.toml b/backend/Cargo.toml new file mode 100644 index 0000000..f781829 --- /dev/null +++ b/backend/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "backend" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/backend/src/main.rs b/backend/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/backend/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/docs/.gitkeep b/docs/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/frontend/.gitkeep b/frontend/.gitkeep new file mode 100644 index 0000000..e69de29