libp2p / go-libp2p-examples

Example libp2p applications
MIT License
339 stars 145 forks source link

how to init RendezvousString in chat-with-rendezvous? #184

Closed bitcard closed 3 years ago

bitcard commented 3 years ago

in example chat-with-rendezvous, there is a flag: RendezvousString, does it must set? how to init it? thanks.

ChronosXYZ commented 3 years ago

@bitcard You just need to specify it in console args, for example: go run chat.go -randezvous <your string>

bitcard commented 3 years ago

@bitcard You just need to specify it in console args, for example: go run chat.go -randezvous <your string>

ok, thank you.