sing-box/adapter/service.go
2022-07-21 21:13:16 +08:00

13 lines
120 B
Go

package adapter
import "io"
type Starter interface {
Start() error
}
type Service interface {
Starter
io.Closer
}