]> git.scottworley.com Git - tattlekey/commitdiff
server: Start
authorScott Worley <scottworley@scottworley.com>
Tue, 10 Oct 2023 16:55:50 +0000 (09:55 -0700)
committerScott Worley <scottworley@scottworley.com>
Wed, 11 Oct 2023 01:50:13 +0000 (18:50 -0700)
server/.gitignore [new file with mode: 0644]
server/Cargo.lock [new file with mode: 0644]
server/Cargo.toml [new file with mode: 0644]
server/src/main.rs [new file with mode: 0644]

diff --git a/server/.gitignore b/server/.gitignore
new file mode 100644 (file)
index 0000000..eb5a316
--- /dev/null
@@ -0,0 +1 @@
+target
diff --git a/server/Cargo.lock b/server/Cargo.lock
new file mode 100644 (file)
index 0000000..1dbac3d
--- /dev/null
@@ -0,0 +1,7 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 3
+
+[[package]]
+name = "tattlekey-server"
+version = "0.0.1"
diff --git a/server/Cargo.toml b/server/Cargo.toml
new file mode 100644 (file)
index 0000000..a77bdd3
--- /dev/null
@@ -0,0 +1,13 @@
+[package]
+authors = ["Scott Worley <scottworley@scottworley.com>"]
+description = "Collect reports from tattlekey devices"
+edition = "2021"
+license = "GPL-3.0"
+name = "tattlekey-server"
+repository = "https://git.scottworley.com/tattlekey"
+version = "0.0.1"
+
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
diff --git a/server/src/main.rs b/server/src/main.rs
new file mode 100644 (file)
index 0000000..e7a11a9
--- /dev/null
@@ -0,0 +1,3 @@
+fn main() {
+    println!("Hello, world!");
+}