15 lines
461 B
Go
15 lines
461 B
Go
package option
|
|
|
|
import (
|
|
"github.com/sagernet/sing/common/json/badoption"
|
|
)
|
|
|
|
type XBoardServiceOptions struct {
|
|
PanelURL string `json:"panel_url"`
|
|
Key string `json:"key"`
|
|
NodeID int `json:"node_id"`
|
|
NodeType string `json:"node_type"`
|
|
SyncInterval badoption.Duration `json:"sync_interval,omitempty"`
|
|
ReportInterval badoption.Duration `json:"report_interval,omitempty"`
|
|
}
|