(key string, value int64)
| 114 | } |
| 115 | |
| 116 | func Int64(key string, value int64) Attribute { |
| 117 | return Attribute{Key: key, Value: value} |
| 118 | } |
| 119 | |
| 120 | func Float64(key string, value float64) Attribute { |
| 121 | return Attribute{Key: key, Value: value} |
no outgoing calls
no test coverage detected