mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-05 23:13:08 +00:00
12 lines
310 B
C#
12 lines
310 B
C#
namespace CodexPlugin.Hooks
|
|
{
|
|
public interface ICodexNodeHooks
|
|
{
|
|
void OnNodeStarting(DateTime startUtc, string image);
|
|
void OnNodeStarted(string peerId);
|
|
void OnNodeStopping();
|
|
void OnFileUploaded(ContentId cid);
|
|
void OnFileDownloaded(ContentId cid);
|
|
}
|
|
}
|