From d2707dc283e78be721517997e9b2ee97897d0c49 Mon Sep 17 00:00:00 2001 From: Niko Marmeladkov Date: Thu, 18 Jun 2026 17:24:11 +0300 Subject: [PATCH] fix: add UserManager field to ExperimentalOptions --- option/experimental.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/option/experimental.go b/option/experimental.go index 2f00decf..4b1b0af3 100644 --- a/option/experimental.go +++ b/option/experimental.go @@ -3,10 +3,11 @@ package option import "github.com/sagernet/sing/common/json/badoption" type ExperimentalOptions struct { - CacheFile *CacheFileOptions `json:"cache_file,omitempty"` - ClashAPI *ClashAPIOptions `json:"clash_api,omitempty"` - V2RayAPI *V2RayAPIOptions `json:"v2ray_api,omitempty"` - Debug *DebugOptions `json:"debug,omitempty"` + CacheFile *CacheFileOptions `json:"cache_file,omitempty"` + ClashAPI *ClashAPIOptions `json:"clash_api,omitempty"` + V2RayAPI *V2RayAPIOptions `json:"v2ray_api,omitempty"` + Debug *DebugOptions `json:"debug,omitempty"` + UserManager *UserManagerOptions `json:"user_manager,omitempty"` } type CacheFileOptions struct {