mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 14:24:32 +00:00
16 lines
380 B
C#
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);
|
|
|
|
}
|
|
} |