From 2d95d4d069124df4a4e2473fc23ad3feed19905d Mon Sep 17 00:00:00 2001 From: Sam Whited Date: Fri, 11 Mar 2022 13:22:29 -0500 Subject: Remove vendor from git Previously we saved the vendor tree in version control, making any commit that changed a dependency rather large. Go Modules gives us most of the advantages of vendoring except that if a dependency which is not stored on the proxy is deleted we would lose access to it. For now, we can remove the vendor tree and when we get CI working again we can possibly generate and save the vendor tree as a build artifact. Signed-off-by: Sam Whited --- vendor/github.com/pion/mdns/errors.go | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 vendor/github.com/pion/mdns/errors.go (limited to 'vendor/github.com/pion/mdns/errors.go') diff --git a/vendor/github.com/pion/mdns/errors.go b/vendor/github.com/pion/mdns/errors.go deleted file mode 100644 index 2f8dc92..0000000 --- a/vendor/github.com/pion/mdns/errors.go +++ /dev/null @@ -1,10 +0,0 @@ -package mdns - -import "errors" - -var ( - errJoiningMulticastGroup = errors.New("mDNS: failed to join multicast group") - errConnectionClosed = errors.New("mDNS: connection is closed") - errContextElapsed = errors.New("mDNS: context has elapsed") - errNilConfig = errors.New("mDNS: config must not be nil") -) -- cgit v1.2.3