| 8 | |
| 9 | func ExampleMarshal() { |
| 10 | type Article struct { |
| 11 | ID string `jsonapi:"primary,articles"` |
| 12 | Title string `jsonapi:"attribute" json:"title"` |
| 13 | } |
| 14 | |
| 15 | a := Article{ID: "1", Title: "Hello World"} |
| 16 |
nothing calls this directly
no outgoing calls
no test coverage detected