sing-box/common/tun/tun.go

13 lines
204 B
Go
Raw Normal View History

2022-07-09 11:18:37 +00:00
package tun
import (
E "github.com/sagernet/sing/common/exceptions"
N "github.com/sagernet/sing/common/network"
)
type Handler interface {
N.TCPConnectionHandler
N.UDPConnectionHandler
E.Handler
}