0
0
mirror of https://github.com/rls-moe/nyx synced 2025-08-20 12:04:16 +00:00

updated dependencies, using go.mod now

This commit is contained in:
Tim Schuster
2020-04-18 10:09:55 +02:00
parent b9b6004709
commit 371216e338
26 changed files with 292 additions and 256 deletions

3
vendor/github.com/pressly/chi/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,3 @@
.idea
*.sw?
.vscode

14
vendor/github.com/pressly/chi/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,14 @@
language: go
go:
- 1.7.4
- tip
install:
- go get -u golang.org/x/tools/cmd/goimports
script:
- go get -d -t ./...
- go test ./...
- >
goimports -d -e ./ | grep '.*' && { echo; echo "Aborting due to non-empty goimports output."; exit 1; } || :