V2bX/service/service.go

17 lines
364 B
Go
Raw Normal View History

2022-06-01 13:35:41 -04:00
// Package service contains all the services used by XrayR
// To implement an service, one needs to implement the interface below.
package service
// Service is the interface of all the services running in the panel
type Service interface {
Start() error
Close() error
Restart
}
// Restart the service
type Restart interface {
Start() error
Close() error
}