From 455d1d412d1bdea6b5d75d1b4a341a7ab86f4a1a Mon Sep 17 00:00:00 2001 From: afterlifepro Date: Fri, 26 Sep 2025 16:38:40 +0100 Subject: [PATCH] upload: initial commit --- .gitignore | 2 +- upload/.gitignore | 1 + upload/Cargo.lock | 7 +++++++ upload/Cargo.toml | 6 ++++++ upload/src/main.rs | 3 +++ 5 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 upload/.gitignore create mode 100644 upload/Cargo.lock create mode 100644 upload/Cargo.toml create mode 100644 upload/src/main.rs 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!") +} -- 2.51.2