mirror of
https://github.com/caddyserver/caddy.git
synced 2025-05-31 04:05:46 -04:00
10 lines
221 B
Go
10 lines
221 B
Go
package utils
|
|
|
|
import "github.com/lucas-clemente/quic-go/internal/protocol"
|
|
|
|
// ByteInterval is an interval from one ByteCount to the other
|
|
type ByteInterval struct {
|
|
Start protocol.ByteCount
|
|
End protocol.ByteCount
|
|
}
|