이쿠의 슬기로운 개발생활

함께 성장하기 위한 보안 개발자 EverNote 내용 공유

코딩/GoLang

golang vscode args 전달 방법

이쿠우우 2022. 1. 2. 14:49
반응형

 

golang vscode args 전달 방법

 
vscode 에서 golang project를 생성하면
default로 아래와 같이 .vscode/launch.json 파일이 생성됨.
 
[예제 launch.json]

{

    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Launch Package",
            "type": "go",
            "request": "launch",
            "mode": "auto",
            "program": "${fileDirname}",
            "args": ["-U", "test"]
        }
    ]
}

 

반응형

'코딩 > GoLang' 카테고리의 다른 글

Golang gtest  (0) 2022.01.02
godoc  (0) 2021.12.25
Golang race flag (-race)  (0) 2021.12.25
Golang web crawling 분석  (0) 2021.05.26
GoLang 개념  (0) 2020.12.04