Earlier quoted context omitted.
It is a rather vauge statement and could have used some clarification; however Go does make writing network protocols very simple, and building something like a gossip protocol based system with a leader election system is doable in a week. Even quicker if you use some of the existing distributed systems libraries for Go.
What does Go do that makes writing network protocols simple?
Go routines and channels are also nice for handling concurrent requests though I find myself using mutexes more than channels for finer grained control.