github.com/koko1123/flow-go-1@v0.29.6/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  }