File tree Expand file tree Collapse file tree 5 files changed +36
-8
lines changed Expand file tree Collapse file tree 5 files changed +36
-8
lines changed Original file line number Diff line number Diff line change
1
+ // Copyright 2019, OpenTelemetry Authors
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ // Package propagation contains interface definition for Binary and TextFormat propagators.
16
+ package propagation // import "go.opentelemetry.io/api/propagation"
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- // Package tracecontext contains HTTP propagator for TraceContext standard.
16
- // See https://github.com/w3c/distributed-tracing for more information.
17
- package propagation // import "go.opentelemetry.io/api/propagation"
15
+ package propagation
18
16
19
17
import (
20
18
"go.opentelemetry.io/api/core"
Original file line number Diff line number Diff line change
1
+ // Copyright 2019, OpenTelemetry Authors
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ // Package propagation contains propagators for different format and carriers.
16
+ package propagation // import "go.opentelemetry.io/propagation"
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- // Package tracecontext contains HTTP propagator for TraceContext standard.
16
- // See https://github.com/w3c/distributed-tracing for more information.
17
- package propagation // import "go.opentelemetry.io/propagation"
15
+ package propagation
18
16
19
17
import (
20
18
"encoding/hex"
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ import (
18
18
"net/http"
19
19
"testing"
20
20
21
- "go.opentelemetry.io/api/tag"
22
-
23
21
"github.com/google/go-cmp/cmp"
22
+
24
23
"go.opentelemetry.io/api/core"
24
+ "go.opentelemetry.io/api/tag"
25
25
"go.opentelemetry.io/propagation"
26
26
)
27
27
You can’t perform that action at this time.
0 commit comments