1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-18 08:26:45 +02:00
woodpecker/vendor/github.com/lucas-clemente/quic-go/internal/utils/streamframe_interval.go
2017-07-24 19:15:25 -04:00

11 lines
231 B
Go

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
}