コード例 #1
0
ファイル: kademlia.go プロジェクト: utamaro/gogotelehash
func Register(e *e3x.Endpoint, key string) {
	e.Use(moduleKey(key), newDHT(e))
}
コード例 #2
0
ファイル: chord.go プロジェクト: utamaro/gogotelehash
func Register(e *e3x.Endpoint, key string, conf *chord.Config) {
	e.Use(moduleKey(key), &ring{e, conf, nil})
}