| 5 | ) |
| 6 | |
| 7 | type UserAgent struct { |
| 8 | Product string `json:"product,omitempty"` |
| 9 | Version string `json:"version,omitempty"` |
| 10 | Comment string `json:"comment,omitempty"` |
| 11 | RawValue string `json:"raw_value,omitempty"` |
| 12 | } |
| 13 | |
| 14 | func Parse(s string) UserAgent { |
| 15 | parts := strings.SplitN(s, "/", 2) |
nothing calls this directly
no outgoing calls
no test coverage detected