mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-05 06:53:07 +00:00
11 lines
262 B
C#
11 lines
262 B
C#
|
|
namespace CodexPlugin.Hooks
|
|||
|
|
{
|
|||
|
|
public interface ICodexNodeHooks
|
|||
|
|
{
|
|||
|
|
void OnNodeStarted(string peerId, string image);
|
|||
|
|
void OnNodeStopping();
|
|||
|
|
void OnFileUploaded(ContentId cid);
|
|||
|
|
void OnFileDownloaded(ContentId cid);
|
|||
|
|
}
|
|||
|
|
}
|