| 15 | } |
| 16 | |
| 17 | type Author struct { |
| 18 | ID int |
| 19 | FirstName string |
| 20 | LastName string |
| 21 | Email string |
| 22 | Profile UserProfile |
| 23 | } |
| 24 | |
| 25 | func (a Author) FullName() string { |
| 26 | return a.FirstName + " " + a.LastName |
nothing calls this directly
no outgoing calls
no test coverage detected