mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
12 lines
165 B
Go
12 lines
165 B
Go
package core
|
|
|
|
import (
|
|
"sing/common/session"
|
|
"sing/transport"
|
|
)
|
|
|
|
type Instance interface {
|
|
session.Handler
|
|
transport.InboundManager
|
|
transport.OutboundManager
|
|
}
|