3x-ui/web/job/stats_notify_job.go
civisrom b7c471e8f2 new file: xray/log_writer.go
new file:   xray/process.go
	new file:   xray/traffic.go
2025-02-04 14:38:53 +03:00

29 lines
471 B
Go

package job
import (
"x-ui/web/service"
)
type LoginStatus byte
const (
LoginSuccess LoginStatus = 1
LoginFail LoginStatus = 0
)
type StatsNotifyJob struct {
xrayService service.XrayService
tgbotService service.Tgbot
}
func NewStatsNotifyJob() *StatsNotifyJob {
return new(StatsNotifyJob)
}
// Here run is a interface method of Job interface
func (j *StatsNotifyJob) Run() {
if !j.xrayService.IsXrayRunning() {
return
}
j.tgbotService.SendReport()
}