start testing cloud service implementation

This commit is contained in:
Вячеслав 2026-02-03 01:54:19 +05:00
parent 3c08d93bc5
commit 2c3f19d7ce
5 changed files with 328 additions and 0 deletions

View file

@ -0,0 +1,8 @@
using MetaforceInstaller.Cloud.Models;
namespace MetaforceInstaller.Cloud;
public interface ICloudService
{
Task<List<CloudObject>> GetObjects(string webLink);
}