mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-17 21:15:50 +00:00
10 lines
211 B
Go
10 lines
211 B
Go
|
|
package transport
|
||
|
|
|
||
|
|
import "github.com/xtls/xray-core/common/buf"
|
||
|
|
|
||
|
|
// Link is a utility for connecting between an inbound and an outbound proxy handler.
|
||
|
|
type Link struct {
|
||
|
|
Reader buf.Reader
|
||
|
|
Writer buf.Writer
|
||
|
|
}
|