github.com/nibnait/go-learn@v0.0.0-20220227013611-dfa47ea6d2da/src/test/chapter/ch9/01_optimize_eg/structs.go (about)

     1  package profiling
     2  
     3  type Request struct {
     4  	TransactionID string `01_json:"transaction_id"`
     5  	PayLoad       []int  `01_json:"payload"`
     6  }
     7  
     8  type Response struct {
     9  	TransactionID string `01_json:"transaction_id"`
    10  	Expression    string `01_json:"exp"`
    11  }