1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-21 17:46:58 -05:00
v2fly/vsegment.go

10 lines
141 B
Go
Raw Normal View History

2015-09-09 06:13:52 -04:00
package core
// VSegment is a connection between 2 VPoints
type VSegment struct {
}
func NewVSegment() *VSegment {
return new(VSegment)
}