chore: rename Helpers -> Utilities
This commit is contained in:
parent
d99a44304f
commit
c3e922856c
|
|
@ -6,7 +6,7 @@ using System.Net;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
|
|
||||||
using Kiseki.Launcher.Helpers;
|
using Kiseki.Launcher.Utilities;
|
||||||
using Kiseki.Launcher.Models;
|
using Kiseki.Launcher.Models;
|
||||||
|
|
||||||
using Microsoft.Win32;
|
using Microsoft.Win32;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace Kiseki.Launcher.Helpers;
|
namespace Kiseki.Launcher.Utilities;
|
||||||
|
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace Kiseki.Launcher.Helpers;
|
namespace Kiseki.Launcher.Utilities;
|
||||||
|
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
|
|
@ -37,7 +37,7 @@ public static class Web
|
||||||
|
|
||||||
public static async Task<Models.WebResponse> CheckHealth()
|
public static async Task<Models.WebResponse> CheckHealth()
|
||||||
{
|
{
|
||||||
var response = await Helpers.Http.GetJson<Models.HealthCheck>(Url("/api/health"));
|
var response = await Utilities.Http.GetJson<Models.HealthCheck>(Url("/api/health"));
|
||||||
|
|
||||||
return new Models.WebResponse(response?.Status ?? RESPONSE_FAILURE, response);
|
return new Models.WebResponse(response?.Status ?? RESPONSE_FAILURE, response);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue