mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-17 04:55:46 +00:00
15 lines
269 B
Go
15 lines
269 B
Go
|
|
package outbound
|
||
|
|
|
||
|
|
import (
|
||
|
|
|
||
|
|
"github.com/xtls/xray-core/common/net"
|
||
|
|
"github.com/xtls/xray-core/common/protocol"
|
||
|
|
)
|
||
|
|
|
||
|
|
// As a stub command consumer.
|
||
|
|
func (h *Handler) handleCommand(dest net.Destination, cmd protocol.ResponseCommand) {
|
||
|
|
switch cmd.(type) {
|
||
|
|
default:
|
||
|
|
}
|
||
|
|
}
|