saysthbot-reborn/.vscode/launch.json
senseab 56635e0e1b
Dev (#1)
* init

* bot framework done

* here and ready for orm

* might use sea-orm

* orm done

* use teloxide

* ready to go?

* 需要完成命令部分

* 需要完成:list_handler()

* 查询用户名应当以@开头

* use rustls to avoid segfault?

* postgresql ready

* inline query done

* list_handler

* flattern code

* test needed

* ready to build

* some bugs

* almost done

* ready to take off

Co-authored-by: senset <dummy@dummy.d>
2022-06-28 18:11:47 +08:00

45 lines
1.3 KiB
JSON

{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'saysthbot-reborn'",
"cargo": {
"args": [
"build",
"--bin=saysthbot-reborn",
"--package=saysthbot-reborn"
],
"filter": {
"name": "saysthbot-reborn",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'saysthbot-reborn'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=saysthbot-reborn",
"--package=saysthbot-reborn"
],
"filter": {
"name": "saysthbot-reborn",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}