[#1] Add presentation layer
Signed-off-by: Ivan Pchelintsev <i.pchelintsev@yadro.com>
This commit is contained in:
parent
2800fff041
commit
bb6e187b61
22 changed files with 778 additions and 79 deletions
11
sdk/src/FrostFS.SDK.ClientV2/Interfaces/IFrostFSClient.cs
Normal file
11
sdk/src/FrostFS.SDK.ClientV2/Interfaces/IFrostFSClient.cs
Normal file
|
@ -0,0 +1,11 @@
|
|||
using FrostFS.Refs;
|
||||
|
||||
namespace FrostFS.SDK.ClientV2;
|
||||
|
||||
public interface IFrostFSClient
|
||||
{
|
||||
Task<Container.ListResponse> ListContainersAsync();
|
||||
Task<Container.PutResponse> CreateContainerAsync(Container.Container container);
|
||||
Task<Container.GetResponse> GetContainerAsync(ContainerID containerId);
|
||||
Task<Container.DeleteResponse> DeleteContainerAsync(ContainerID cid);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue