Programming Language/golang
intellij에서 golang 프로젝트 인식이 잘 안될때
AndersonChoi
2023. 2. 22. 14:31
intellij에서 golang을 최초로 실행 시키고 난뒤에
$ go mod init myapplication
프로젝트가 정상적으로 라이브러리들을 Import시키지 못할 때가 있습니다. 그럴 경우에는 cmd + , 를 눌러서 Preferences로 간 뒤 Go Modules의 Enable Go modules integration을 체크하면 싱크됩니다.
싱크가 완료된 go.mod 파일 모습
module myapplication
go 1.19
require (
github.com/gin-gonic/gin v1.9.0
github.com/prometheus/client_golang v1.14.0
)
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/bytedance/sonic v1.8.0 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.14.1 // indirect
...
반응형