A Builder builds a JSON blob. After mutating the Builder, call Blob to get the built blob.
| 355 | // A Builder builds a JSON blob. |
| 356 | // After mutating the Builder, call Blob to get the built blob. |
| 357 | type Builder struct { |
| 358 | m map[string]interface{} |
| 359 | } |
| 360 | |
| 361 | // NewBuilder returns a new blob schema builder. |
| 362 | // The "camliVersion" field is set to "1" by default and the required |
nothing calls this directly
no outgoing calls
no test coverage detected