make utils an internal package

This commit is contained in:
Marten Seemann
2017-06-07 13:07:53 +02:00
parent 24d9ed2769
commit c0b09c8646
74 changed files with 51 additions and 52 deletions

View File

@@ -0,0 +1,10 @@
package utils
import "github.com/lucas-clemente/quic-go/protocol"
// ByteInterval is an interval from one ByteCount to the other
// +gen linkedlist
type ByteInterval struct {
Start protocol.ByteCount
End protocol.ByteCount
}