diff --git a/.gitignore b/.gitignore index 5dc8cef..eb3bbb1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ server/node_modules/* -server/local.db \ No newline at end of file +server/local.db diff --git a/upload/.gitignore b/upload/.gitignore new file mode 100644 index 0000000..c41cc9e --- /dev/null +++ b/upload/.gitignore @@ -0,0 +1 @@ +/target \ No newline at end of file diff --git a/upload/Cargo.lock b/upload/Cargo.lock new file mode 100644 index 0000000..61dca54 --- /dev/null +++ b/upload/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "atcities-upload" +version = "0.1.0" diff --git a/upload/Cargo.toml b/upload/Cargo.toml new file mode 100644 index 0000000..73fe264 --- /dev/null +++ b/upload/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "atcities-upload" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/upload/src/main.rs b/upload/src/main.rs new file mode 100644 index 0000000..c96b02b --- /dev/null +++ b/upload/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, World!") +}