mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
18 lines
330 B
Go
18 lines
330 B
Go
package shadowsocks
|
|
|
|
import (
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
"github.com/sagernet/sing/protocol/socks"
|
|
)
|
|
|
|
type Service interface {
|
|
M.TCPConnectionHandler
|
|
socks.UDPHandler
|
|
}
|
|
|
|
type Handler interface {
|
|
M.TCPConnectionHandler
|
|
socks.UDPConnectionHandler
|
|
E.Handler
|
|
}
|