mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-12 15:27:16 -05:00
10 lines
245 B
Go
10 lines
245 B
Go
package utils
|
|
|
|
import "v2ray.com/core/external/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
|
|
}
|