This commit is contained in:
2025-05-25 08:57:57 +07:00
commit cb8af83230
1025 changed files with 13058 additions and 0 deletions

15
ProxyConfigContext.cs Normal file
View File

@@ -0,0 +1,15 @@
using System.Text.Json.Serialization;
using System.Text.Json;
namespace FireflyProxy;
#if NET8_0_OR_GREATER
[JsonSourceGenerationOptions(
AllowTrailingCommas = true,
ReadCommentHandling = JsonCommentHandling.Skip
)]
[JsonSerializable(typeof(ProxyConfig))]
internal partial class ProxyConfigContext : JsonSerializerContext
{
}
#endif