sing-box/adapter/service.go

7 lines
74 B
Go

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