summaryrefslogtreecommitdiff
path: root/systems/_config
diff options
context:
space:
mode:
Diffstat (limited to 'systems/_config')
-rw-r--r--systems/_config/Cargo.toml6
-rw-r--r--systems/_config/src/main.rs3
2 files changed, 9 insertions, 0 deletions
diff --git a/systems/_config/Cargo.toml b/systems/_config/Cargo.toml
new file mode 100644
index 0000000..eacbcda
--- /dev/null
+++ b/systems/_config/Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "config_system"
+edition = "2024"
+version.workspace = true
+
+[dependencies]
diff --git a/systems/_config/src/main.rs b/systems/_config/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/systems/_config/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}