github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/network/channels/topic.go (about)

     1  package channels
     2  
     3  // Topic is the internal type of Libp2p which corresponds to the Channel in the network level.
     4  // It is a virtual medium enabling nodes to subscribe and communicate over epidemic dissemination.
     5  type Topic string
     6  
     7  func (t Topic) String() string {
     8  	return string(t)
     9  }