mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 13:33:07 +00:00
12 lines
294 B
C#
12 lines
294 B
C#
using Logging;
|
|
|
|
namespace CodexClient
|
|
{
|
|
public interface IProcessControl
|
|
{
|
|
void Stop(ICodexInstance instance, bool waitTillStopped);
|
|
IDownloadedLog DownloadLog(ICodexInstance instance, LogFile file);
|
|
void DeleteDataDirFolder(ICodexInstance instance);
|
|
}
|
|
}
|