mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-12 18:33:10 +00:00
22 lines
432 B
C#
22 lines
432 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AutoClient.Modes
|
|
{
|
|
public class FolderStoreMode : IMode
|
|
{
|
|
public void Start(ICodexInstance instance, int index)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Stop()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|