[간단 한 시작]go module,go.mod 사용 하기

  • golang version :go1.12.1
  • 오래된 프로젝트 에서 go module 패키지 관 리 를 사용 합 니 다
  • go 모듈 사용 하기
    #       
    > export GO111MODULE=on
    

    초기 화
    #         go.mod  
    > go mod init
    

    항목 의존 가 져 오기
    #      go.mod,           
    > go get ./...
    

    사유 라 이브 러 리 의존
    go.mod 파일 수정
    //   replace         
    replace (
    	gitlab.xx.cn/xx/xx => ./vendor/gitlab.xx.cn/xx/xx
    )
    
    require (
    	gitlab.xx.cn/xx/xx v0.0.0
    	github.com/BurntSushi/toml v0.3.1
    	github.com/garyburd/redigo v1.6.0
    	github.com/gin-contrib/pprof v1.2.1
    	github.com/gin-gonic/gin v1.4.0
    	github.com/gorilla/sessions v1.2.0
    	github.com/gorilla/websocket v1.4.1
    	github.com/inconshreveable/log15 v0.0.0-20180818164646-67afb5ed74ec
    	github.com/satori/go.uuid v1.2.0
    	github.com/tealeg/xlsx v1.0.5
    	gopkg.in/go-playground/validator.v8 v8.18.2
    	gopkg.in/go-playground/validator.v9 v9.30.2
    )
    

    좋은 웹페이지 즐겨찾기