mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-13 07:24:52 +01:00
19 lines
491 B
C#
19 lines
491 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace nksrv.IntlServer
|
|
{
|
|
internal class JuniperLauncherGetRepoVersion : IntlMsgHandler
|
|
{
|
|
public override bool RequiresAuth => false;
|
|
|
|
protected override async Task HandleAsync()
|
|
{
|
|
await WriteJsonStringAsync(File.ReadAllText(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "gameversion.json")), true);
|
|
}
|
|
}
|
|
}
|