(s string)
| 343 | } |
| 344 | |
| 345 | func fieldName(s string) string { |
| 346 | if s == "" { |
| 347 | return s |
| 348 | } |
| 349 | return strings.ToLower(s[:1]) + s[1:] |
| 350 | } |
| 351 | |
| 352 | type Generator struct { |
| 353 | buf bytes.Buffer |
no outgoing calls
no test coverage detected
searching dependent graphs…