Files
go-i2p/lib/netdb/reseed.go

9 lines
123 B
Go
Raw Normal View History

2016-01-28 10:46:09 -05:00
package netdb
type HTTPSReseed string
func (r HTTPSReseed) Reseed(chnl chan *Entry) (err error) {
2016-01-29 07:22:31 -05:00
close(chnl)
return
2016-01-28 10:46:09 -05:00
}