Ititial commit. It works somehow.

This commit is contained in:
AB
2020-04-15 01:55:02 +03:00
commit 530d56bcb2
5 changed files with 328 additions and 0 deletions

22
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,22 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"subcommand": "build",
"problemMatcher": [
"$rustc"
],
"group": "build"
},
{
"label": "Umount FUSE",
"type": "shell",
"command": "fusermount -u mnt",
"group": "build",
"problemMatcher": []
}
]
}