From 877d4d941ff74b1fef29ee882f5b7a2103a58289 Mon Sep 17 00:00:00 2001 From: limil Date: Sat, 8 Nov 2025 20:14:57 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Src/Utils/Config.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Src/Utils/Config.cs b/Src/Utils/Config.cs index 35979ba..4dff33f 100644 --- a/Src/Utils/Config.cs +++ b/Src/Utils/Config.cs @@ -33,8 +33,8 @@ public interface IConfig public sealed class Config(string configPath) : IConfig { - public IConfig G => _G; - public Config _G { private get; set; } + public static IConfig G => _G; + public static Config _G { private get; set; } private static readonly ConcurrentDictionary Cache = new(); private readonly ConcurrentDictionary _configObjects = new();