mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 11:57:37 +03:00
21 lines
340 B
Go
21 lines
340 B
Go
package service
|
|
|
|
type Adapter struct {
|
|
serviceType string
|
|
serviceTag string
|
|
}
|
|
|
|
func NewAdapter(serviceType string, serviceTag string) Adapter {
|
|
return Adapter{
|
|
serviceType: serviceType,
|
|
serviceTag: serviceTag,
|
|
}
|
|
}
|
|
|
|
func (a *Adapter) Type() string {
|
|
return a.serviceType
|
|
}
|
|
|
|
func (a *Adapter) Tag() string {
|
|
return a.serviceTag
|
|
}
|