2020-08-08 08:53:35 +02:00
|
|
|
|
namespace Giants.Services
|
|
|
|
|
{
|
|
|
|
|
using System;
|
2020-08-10 09:22:33 +02:00
|
|
|
|
using System.Threading.Tasks;
|
2020-08-08 08:53:35 +02:00
|
|
|
|
|
2022-09-05 22:42:41 +02:00
|
|
|
|
public class FileVersioningStore : IVersioningStore
|
2020-08-08 08:53:35 +02:00
|
|
|
|
{
|
2020-08-11 10:29:45 +02:00
|
|
|
|
public Task<VersionInfo> GetVersionInfo(string appName)
|
2020-08-10 09:22:33 +02:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-05 22:42:41 +02:00
|
|
|
|
public Task UpdateVersionInfo(VersionInfo versionInfo)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-10 09:22:33 +02:00
|
|
|
|
public Task Initialize()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
2020-08-08 08:53:35 +02:00
|
|
|
|
}
|
|
|
|
|
}
|