소스 검색

initial commit

Signed-off-by: longjin <longjin@DragonOS.org>
longjin 2 주 전
커밋
c00141617f
3개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      .gitignore
  2. 7 0
      Cargo.toml
  3. 3 0
      src/main.rs

+ 1 - 0
.gitignore

@@ -0,0 +1 @@
+/target

+ 7 - 0
Cargo.toml

@@ -0,0 +1,7 @@
+[package]
+name = "mirror-proxy"
+version = "0.1.0"
+edition = "2021"
+authors = ["longjin <longjin@dragonos.org>"]
+
+[dependencies]

+ 3 - 0
src/main.rs

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