Add module config

This commit is contained in:
Juan Carlos Mejías Rodríguez 2019-08-08 10:06:16 -04:00
parent 0f0eaa7c3f
commit 046bdc09e8
2 changed files with 12 additions and 3 deletions

View File

@ -1,9 +1,9 @@
project_name: psu
env:
- GO111MODULE=on
before:
hooks:
- go get github.com/spf13/cobra
- go get github.com/joho/godotenv
- go get github.com/sirupsen/logrus
- go mod download
builds:
- main: main.go
binary: psu

9
go.mod Normal file
View File

@ -0,0 +1,9 @@
module github.com/greenled/portainer-stack-utils
go 1.12
require (
github.com/spf13/cobra v0.0.5
github.com/joho/godotenv v1.3.0
github.com/sirupsen/logrus v1.4.2
)