github.com/aergoio/aergo@v1.3.1/examples/component/message/componentmsg.go (about)

     1  /**
     2   *  @file
     3   *  @copyright defined in aergo/LICENSE.txt
     4   */
     5  
     6  package message
     7  
     8  const HelloService = "HelloService"
     9  
    10  type HelloReq struct{ Who string }
    11  
    12  type HelloRsp struct{ Greeting string }