1
0

add operator

This commit is contained in:
2022-08-15 13:43:04 +08:00
parent d2aee92357
commit 9ba33d64d3
15 changed files with 1400 additions and 0 deletions

18
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Monitor",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/monitor/main.go",
"args": [
"--log-level=debug"
]
}
]
}