Live video on the AT Protocol
1package iroh_replicator
2
3import (
4 "context"
5)
6
7// IrohReplicator implements the replication mechanism using iroh
8type IrohReplicator struct {
9}
10
11func NewIrohReplicator(ctx context.Context) (*IrohReplicator, error) {
12
13 return &IrohReplicator{}, nil
14}
15
16func (rep *IrohReplicator) NewSegment(ctx context.Context, bs []byte) {
17
18}