sing-box/adapter/service.go
2022-08-16 23:39:11 +08:00

7 lines
74 B
Go

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