Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Commit

Permalink
Part one of converting OFC to go modules
Browse files Browse the repository at this point in the history
This will initialise a module in each function/folder. This needs to be
merged before modules can start to manage dependancies because otherwise
you get a duplicate definition error as each function that imports
anything from the ofc repo (from github in its gopkg) will pull the
whole repo in, not just the module it wants (the SDK for example) so we
need a go mod in each folder to avoid it existing twice in the
dependency tree for the function.

Once this is in, each module can be converted to go modules and remove
the use of dep

Signed-off-by: Alistair Hey <alistair@heyal.co.uk>
  • Loading branch information
Waterdrips committed Nov 10, 2020
1 parent cca5c90 commit 31e61eb
Show file tree
Hide file tree
Showing 386 changed files with 181,283 additions and 0 deletions.
11 changes: 11 additions & 0 deletions audit-event/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module github.com/openfaas/openfaas-cloud/audit-event

go 1.13

require (
github.com/alexellis/hmac v0.0.0-20180624210714-d5d71edd7bc7
github.com/openfaas/faas-provider v0.0.0-20191011092439-98c25c3919da
github.com/openfaas/openfaas-cloud v0.0.0-20200303103051-6c3e056a6ac4
github.com/sirupsen/logrus v1.7.0
golang.org/x/sys v0.0.0-20201109165425-215b40eba54c
)
4 changes: 4 additions & 0 deletions audit-event/vendor/github.com/sirupsen/logrus/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions audit-event/vendor/github.com/sirupsen/logrus/.golangci.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions audit-event/vendor/github.com/sirupsen/logrus/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

223 changes: 223 additions & 0 deletions audit-event/vendor/github.com/sirupsen/logrus/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions audit-event/vendor/github.com/sirupsen/logrus/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 31e61eb

Please sign in to comment.