Рефактор
Some checks failed
Create and publish a Docker image / Publish image (push) Failing after 9s
Some checks failed
Create and publish a Docker image / Publish image (push) Failing after 9s
This commit is contained in:
12
ModeusSchedule.Abstractions/GlobalConsts.cs
Normal file
12
ModeusSchedule.Abstractions/GlobalConsts.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Text.Encodings.Web;
|
||||
using System.Text.Json;
|
||||
|
||||
namespace ModeusSchedule.Abstractions;
|
||||
|
||||
public static class GlobalConsts
|
||||
{
|
||||
public static readonly JsonSerializerOptions JsonSerializerOptions = new()
|
||||
{ PropertyNamingPolicy = JsonNamingPolicy.CamelCase, Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping };
|
||||
|
||||
public static string JwtFilePath { get; set; } = "data/jwt.txt";
|
||||
}
|
||||
Reference in New Issue
Block a user