sing-box/adapter/service.go

13 lines
120 B
Go
Raw Normal View History

2022-06-30 13:27:56 +00:00
package adapter
2022-07-21 13:03:41 +00:00
import "io"
type Starter interface {
2022-06-30 13:27:56 +00:00
Start() error
2022-07-21 13:03:41 +00:00
}
type Service interface {
Starter
io.Closer
2022-06-30 13:27:56 +00:00
}