move varint encoding / decoding to a separate package

... which is not internal.
This commit is contained in:
Marten Seemann
2021-01-01 11:37:19 +08:00
parent 602212e983
commit 11c5045065
47 changed files with 319 additions and 286 deletions

View File

@@ -0,0 +1,13 @@
package quicvarint_test
import (
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestQuicVarint(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "QUIC Varint Suite")
}