| 1088 | } |
| 1089 | |
| 1090 | type ExampleDynamicStruct struct { |
| 1091 | Query string `thrift:"Query,1,required" json:"Query"` |
| 1092 | JSON string `thrift:"JSON,2" json:"json"` |
| 1093 | InnerStruct *InnerStruct `thrift:"InnerStruct,3" json:"inner_struct"` |
| 1094 | } |
| 1095 | |
| 1096 | func NewExampleDynamicStruct() *ExampleDynamicStruct { |
| 1097 | return &ExampleDynamicStruct{} |
nothing calls this directly
no outgoing calls
no test coverage detected