2024-07-26 08:39:27 +02:00

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);
}
}