Installer/Aki.Core/Tasks/SetupClientTask.cs

30 lines
662 B
C#
Raw Normal View History

2022-07-09 00:33:55 -04:00
using SPT_AKI_Installer.Aki.Core.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SPT_AKI_Installer.Aki.Core.Tasks
{
public class SetupClientTask : LiveTableTask
{
private InternalData _data;
public SetupClientTask(InternalData data) : base("Setup Client", false)
{
_data = data;
}
public override async Task<GenericResult> RunAsync()
{
/* TODO:
* patch if needed
* extract release
*/
throw new NotImplementedException();
}
}
}