refactor: Extract clash/v2ray/time service form router

This commit is contained in:
世界 2024-11-10 16:46:59 +08:00
parent 1df8dfcade
commit b4f1c2a596
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
25 changed files with 299 additions and 465 deletions

View file

@ -31,11 +31,12 @@ func (s StartStage) Action() string {
}
}
type NewService interface {
NewStarter
type Lifecycle interface {
Start(stage StartStage) error
Close() error
}
type NewStarter interface {
Start(stage StartStage) error
type LifecycleService interface {
Name() string
Lifecycle
}