This commit is contained in:
世界 2022-03-22 16:46:31 +08:00
parent 98aaae2adc
commit 2e74275ceb
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
30 changed files with 938 additions and 61 deletions

12
core/core.go Normal file
View file

@ -0,0 +1,12 @@
package core
import (
"sing/common/session"
"sing/transport"
)
type Instance interface {
session.Handler
transport.InboundManager
transport.OutboundManager
}