mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 11:57:37 +03:00
27 lines
600 B
Go
27 lines
600 B
Go
package adapter
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/sagernet/sing-box/log"
|
|
"github.com/sagernet/sing-box/option"
|
|
)
|
|
|
|
type Service interface {
|
|
Lifecycle
|
|
Type() string
|
|
Tag() string
|
|
}
|
|
|
|
type ServiceRegistry interface {
|
|
option.ServiceOptionsRegistry
|
|
Create(ctx context.Context, logger log.ContextLogger, tag string, serviceType string, options any) (Service, error)
|
|
}
|
|
|
|
type ServiceManager interface {
|
|
Lifecycle
|
|
Services() []Service
|
|
Get(tag string) (Service, bool)
|
|
Remove(tag string) error
|
|
Create(ctx context.Context, logger log.ContextLogger, tag string, serviceType string, options any) error
|
|
}
|