Initial commit

This commit is contained in:
Alexis Vanier
2020-01-09 17:06:03 -05:00
committed by Alexis Vanier
commit ebbf79ce68
23 changed files with 1443 additions and 0 deletions

37
go.mod Normal file
View File

@@ -0,0 +1,37 @@
module github.com/avanier/gitea-resource
require (
github.com/Masterminds/goutils v1.1.0 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
github.com/adgear/git-tags-resource v0.0.0-20190218172919-c14ae108eaee
github.com/go-task/task v2.2.0+incompatible // indirect
github.com/golang/mock v1.3.1
github.com/google/uuid v1.1.1 // indirect
github.com/huandu/xstrings v1.2.1 // indirect
github.com/imdario/mergo v0.3.8 // indirect
github.com/mattn/go-zglob v0.0.1 // indirect
github.com/mitchellh/copystructure v1.0.0 // indirect
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/reflectwalk v1.0.1 // indirect
github.com/pelletier/go-toml v1.6.0 // indirect
github.com/radovskyb/watcher v1.0.7 // indirect
github.com/robpike/filter v0.0.0-20150108201509-2984852a2183
github.com/sirupsen/logrus v1.4.2
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v0.0.5
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.6.1
golang.org/x/crypto v0.0.0-20191227163750-53104e6ec876 // indirect
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
golang.org/x/sys v0.0.0-20200103143344-a1369afcdac7 // indirect
golang.org/x/text v0.3.2 // indirect
gopkg.in/ini.v1 v1.51.1 // indirect
gopkg.in/yaml.v2 v2.2.7 // indirect
mvdan.cc/sh v2.6.4+incompatible // indirect
robpike.io/filter v0.0.0-20150108201509-2984852a2183
)
go 1.13