TUN-2502: Switch to go modules

This commit is contained in:
Nick Vollmar
2019-11-04 15:05:02 -06:00
parent fa841fc89a
commit e5335b6c1b
138 changed files with 2104 additions and 117120 deletions
View File
+5
View File
@@ -0,0 +1,5 @@
package brotli
import (
"C"
)
Generated Vendored Executable → Regular
View File
Generated Vendored Executable → Regular
View File
Generated Vendored Executable → Regular
View File
Generated Vendored Executable → Regular
View File
Generated Vendored Executable → Regular
+7
View File
@@ -10,3 +10,10 @@ package brotli
// #cgo CFLAGS: -O3
// #cgo LDFLAGS: -lm
import "C"
import (
_ "github.com/cloudflare/brotli-go/brotli"
_ "github.com/cloudflare/brotli-go/common"
_ "github.com/cloudflare/brotli-go/dec"
_ "github.com/cloudflare/brotli-go/enc"
)
+5
View File
@@ -0,0 +1,5 @@
package common
import (
"C"
)
Generated Vendored Executable → Regular
View File
+5
View File
@@ -0,0 +1,5 @@
package dec
import (
"C"
)
Generated Vendored Executable → Regular
View File
View File
+5
View File
@@ -0,0 +1,5 @@
package enc
import (
"C"
)
View File
View File
View File
Generated Vendored Executable → Regular
View File
+3
View File
@@ -0,0 +1,3 @@
module github.com/cloudflare/brotli-go
go 1.12
Generated Vendored Executable → Regular
View File
Generated Vendored Executable → Regular
View File