From 0f15830aae7e30f18daf45d28bff6b0c561b22a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erdem=20=C3=96ZTEK=C4=B0N?= Date: Sun, 14 Jan 2024 22:31:14 +0300 Subject: [PATCH] . --- CurrentTimeService/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CurrentTimeService/Program.cs b/CurrentTimeService/Program.cs index 3c49838..2f4dc6f 100644 --- a/CurrentTimeService/Program.cs +++ b/CurrentTimeService/Program.cs @@ -11,6 +11,6 @@ app.UseHttpsRedirection(); // GET UTC TIME -app.MapGet("time/utc", () => Results.Ok(DateTime.UtcNow.Day)); +app.MapGet("time/utc", () => Results.Ok(DateTime.UtcNow)); await app.RunAsync();