refactor: 清理代码

This commit is contained in:
2025-01-21 19:15:35 +08:00
parent 17f78685fc
commit 47e80bfebc

View File

@@ -39,7 +39,10 @@ public class Config
}
}
public T? Get<T>(string key) => Get<T>(key, default);
public T? Get<T>(string key)
{
return Get<T>(key, default);
}
public T? Get<T>(string key, T? defaultValue)
{