added an fbs reader and server, still not tested

This commit is contained in:
betzalel
2017-07-12 18:23:52 +03:00
parent fe51682a55
commit 7dc1773596
5 changed files with 391 additions and 44 deletions

22
.vscode/launch.json vendored
View File

@@ -68,6 +68,28 @@
},
"args": [],
"showLog": true
},
{
"name": "Launch fbs server",
"type": "go",
"request": "launch",
"mode": "debug",
"remotePath": "",
"port": 2345,
"host": "127.0.0.1",
"program": "${workspaceRoot}/server/",
"osx": {
"env": {
//"GOPATH": "${env.HOME}/Dropbox/go"
}
},
"windows": {
"env": {
//"GOPATH": "${env.USERPROFILE}\\Dropbox\\go"
}
},
"args": [],
"showLog": true
}
]
}