Formatting

This commit is contained in:
Thorsten Sommer 2026-01-23 16:17:05 +01:00
parent 52a0af7b64
commit 89b9e1469d
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -22,7 +22,10 @@ public sealed partial class RustService : BackgroundService
private readonly JsonSerializerOptions jsonRustSerializerOptions = new() private readonly JsonSerializerOptions jsonRustSerializerOptions = new()
{ {
PropertyNamingPolicy = JsonNamingPolicy.SnakeCaseLower, PropertyNamingPolicy = JsonNamingPolicy.SnakeCaseLower,
Converters = { new TolerantEnumConverter() }, Converters =
{
new TolerantEnumConverter(),
},
}; };
private ILogger<RustService>? logger; private ILogger<RustService>? logger;