sing-box/adapter/service.go
2022-07-01 16:58:18 +08:00

7 lines
74 B
Go

package adapter
type Service interface {
Start() error
Close() error
}