Skip to content

Commit 075db7d

Browse files
committed
server
1 parent ebd0f47 commit 075db7d

File tree

7 files changed

+740
-0
lines changed

7 files changed

+740
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "cargo",
6+
"command": "run",
7+
"problemMatcher": [
8+
"$rustc"
9+
],
10+
"label": "rust: cargo run",
11+
"group": {
12+
"kind": "build",
13+
"isDefault": true
14+
}
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)