()
| 51 | } |
| 52 | |
| 53 | func (s SpanOptions) EventOptions() []trace.EventOption { |
| 54 | out := make([]trace.EventOption, len(s)) |
| 55 | for i := range s { |
| 56 | out[i] = s[i] |
| 57 | } |
| 58 | return out |
| 59 | } |
| 60 | |
| 61 | // ProjectOptions returns common attributes from a Compose project. |
| 62 | // |
no outgoing calls
no test coverage detected