From 028f535b7d20f25ff4f94ebc93230491a2ebce5c Mon Sep 17 00:00:00 2001 From: Savanni D'Gerinel Date: Sun, 2 Jun 2024 10:31:26 -0400 Subject: [PATCH] Create the dashboard placeholder --- Cargo.toml | 2 +- gm-dash/Cargo.toml | 8 ++++++++ gm-dash/src/main.rs | 3 +++ 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 gm-dash/Cargo.toml create mode 100644 gm-dash/src/main.rs diff --git a/Cargo.toml b/Cargo.toml index 538b62b..64b64f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,5 +27,5 @@ members = [ "sgf", "timezone-testing", "tree", - "visions/server", + "visions/server", "gm-dash", ] diff --git a/gm-dash/Cargo.toml b/gm-dash/Cargo.toml new file mode 100644 index 0000000..dadb985 --- /dev/null +++ b/gm-dash/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "gm-dash" +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/gm-dash/src/main.rs b/gm-dash/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/gm-dash/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}