update readme, launch.json, notes.md
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -0,0 +1,3 @@
|
|||||||
|
*.exe
|
||||||
|
__debug*
|
||||||
|
ignore
|
||||||
|
|||||||
8
.vscode/launch.json
vendored
8
.vscode/launch.json
vendored
@@ -5,13 +5,15 @@
|
|||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "Debug cmd/web",
|
"name": "Debug cmd/app1",
|
||||||
"type": "go",
|
"type": "go",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"mode": "debug",
|
"mode": "auto",
|
||||||
"program": "${workspaceFolder}/cmd/app1",
|
"program": "${workspaceFolder}/cmd/app1",
|
||||||
|
"env": {},
|
||||||
|
"args": [],
|
||||||
//"showLog": true,
|
//"showLog": true,
|
||||||
"cwd": "${workspaceFolder}",
|
//"cwd": "${workspaceFolder}",
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ my-lib/
|
|||||||
├── lib1/ # Individual importable library. Duplicate as needed
|
├── lib1/ # Individual importable library. Duplicate as needed
|
||||||
│ ├── lib1.go
|
│ ├── lib1.go
|
||||||
│ └── lib1_test.go
|
│ └── lib1_test.go
|
||||||
|
├── ignore # local files ignored by git
|
||||||
└── internal/
|
└── internal/
|
||||||
└── pkg1/ # Internal use package. Duplicate as needed
|
└── pkg1/ # Internal use package. Duplicate as needed
|
||||||
├── pgk1.go
|
├── pgk1.go
|
||||||
|
|||||||
Reference in New Issue
Block a user