فهرست منبع

Initial commit

Lee Morgan 1 ماه پیش
کامیت
f368b80fd5
3فایلهای تغییر یافته به همراه12 افزوده شده و 0 حذف شده
  1. 3 0
      .gitignore
  2. 6 0
      Cargo.toml
  3. 3 0
      src/main.rs

+ 3 - 0
.gitignore

@@ -0,0 +1,3 @@
+/target
+*swp
+*swo

+ 6 - 0
Cargo.toml

@@ -0,0 +1,6 @@
+[package]
+name = "torus-api"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies]

+ 3 - 0
src/main.rs

@@ -0,0 +1,3 @@
+fn main() {
+    println!("Hello, world!");
+}