From da72ac1f6dc24260e4ea5c6427bf0ed9ee963f47 Mon Sep 17 00:00:00 2001 From: hkfires <10558748+hkfires@users.noreply.github.com> Date: Sat, 27 Sep 2025 12:23:20 +0800 Subject: [PATCH] fix(config): Inline SDKConfig for proper YAML parsing --- internal/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/config.go b/internal/config/config.go index 97f056c1..f9d05e3b 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -15,7 +15,7 @@ import ( // Config represents the application's configuration, loaded from a YAML file. type Config struct { - config.SDKConfig + config.SDKConfig `yaml:",inline"` // Port is the network port on which the API server will listen. Port int `yaml:"port" json:"-"`