add base files

This commit is contained in:
Jeff Becker
2016-01-28 10:16:26 -05:00
parent 581742fcc4
commit 67d49585af
28 changed files with 634 additions and 0 deletions

View File

@ -0,0 +1,11 @@
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
}