mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-07-05 14:13:30 -04:00
12 lines
244 B
Go
12 lines
244 B
Go
![]() |
package bootstrap
|
||
|
|
||
|
import (
|
||
|
"github.com/bounce-chat/go-i2p/lib/stdi2p"
|
||
|
)
|
||
|
|
||
|
type Reseed interface {
|
||
|
// do reseed, return nil on success otherwise error
|
||
|
// sends down all retrieved SU3 files down chan
|
||
|
Reseed(chnl chan *stdi2p.SU3) error
|
||
|
}
|