mirror of
https://github.com/caddyserver/caddy.git
synced 2025-06-04 22:25:31 -04:00
11 lines
240 B
Go
11 lines
240 B
Go
package utils
|
|
|
|
import "github.com/lucas-clemente/quic-go/internal/protocol"
|
|
|
|
// ByteInterval is an interval from one ByteCount to the other
|
|
// +gen linkedlist
|
|
type ByteInterval struct {
|
|
Start protocol.ByteCount
|
|
End protocol.ByteCount
|
|
}
|