Files
Nebula-Auth/NebulaAuth/Core/UpdateManager.cs
T
Давид Чернопятов 7586ce3d26 changed to update.xml
2024-02-01 02:03:58 +02:00

16 lines
380 B
C#

using System.Threading.Tasks;
using AutoUpdaterDotNET;
namespace NebulaAuth.Core;
public static class UpdateManager
{
private const string UPDATE_URL = "https://raw.githubusercontent.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies/master/NebulaAuth/update.json";
public static void CheckForUpdates()
{
AutoUpdater.Start(UPDATE_URL);
}
}