1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2026-06-03 18:35:08 +02:00
Files
opentelemetry-go/internal/matchers/temporal_matcher.go
T

18 lines
459 B
Go
Raw Normal View History

2023-08-10 16:00:53 -07:00
// Code created by gotmpl. DO NOT MODIFY.
// source: internal/shared/matchers/temporal_matcher.go.tmpl
// Copyright The OpenTelemetry Authors
2024-02-29 07:05:28 +01:00
// SPDX-License-Identifier: Apache-2.0
2019-12-04 14:00:35 -08:00
package matchers // import "go.opentelemetry.io/otel/internal/matchers"
2019-12-04 14:00:35 -08:00
type TemporalMatcher byte
//nolint:revive // ignoring missing comments for unexported constants in an internal package
2019-12-04 14:00:35 -08:00
const (
Before TemporalMatcher = iota
BeforeOrSameTime
After
AfterOrSameTime
)