mirror of
https://github.com/cloudflare/cloudflared.git
synced 2026-05-14 19:40:41 +00:00
TUN-2502: Switch to go modules
This commit is contained in:
Generated
Vendored
Executable → Regular
+5
@@ -0,0 +1,5 @@
|
||||
package brotli
|
||||
|
||||
import (
|
||||
"C"
|
||||
)
|
||||
+7
@@ -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
@@ -0,0 +1,5 @@
|
||||
package common
|
||||
|
||||
import (
|
||||
"C"
|
||||
)
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package dec
|
||||
|
||||
import (
|
||||
"C"
|
||||
)
|
||||
Generated
Vendored
Executable → Regular
+5
@@ -0,0 +1,5 @@
|
||||
package enc
|
||||
|
||||
import (
|
||||
"C"
|
||||
)
|
||||
Generated
Vendored
Executable → Regular
Generated
Vendored
Executable → Regular
Generated
Vendored
Executable → Regular
+3
@@ -0,0 +1,3 @@
|
||||
module github.com/cloudflare/brotli-go
|
||||
|
||||
go 1.12
|
||||
Reference in New Issue
Block a user