mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 20:37:37 +03:00
20 lines
353 B
Go
20 lines
353 B
Go
package daemon
|
|
|
|
import "github.com/kardianos/service"
|
|
|
|
type Interface struct {
|
|
server *Server
|
|
}
|
|
|
|
func NewInterface(options Options) *Interface {
|
|
return &Interface{NewServer(options)}
|
|
}
|
|
|
|
func (d *Interface) Start(_ service.Service) error {
|
|
return d.server.Start()
|
|
}
|
|
|
|
func (d *Interface) Stop(_ service.Service) error {
|
|
d.server.Close()
|
|
return nil
|
|
}
|