You've already forked golang-saas-starter-kit
mirror of
https://github.com/raseels-repos/golang-saas-starter-kit.git
synced 2025-07-03 00:58:13 +02:00
Imported github.com/ardanlabs/service as base example project
This commit is contained in:
13
example-project/vendor/github.com/openzipkin/zipkin-go/model/kind.go
generated
vendored
Normal file
13
example-project/vendor/github.com/openzipkin/zipkin-go/model/kind.go
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
package model
|
||||
|
||||
// Kind clarifies context of timestamp, duration and remoteEndpoint in a span.
|
||||
type Kind string
|
||||
|
||||
// Available Kind values
|
||||
const (
|
||||
Undetermined Kind = ""
|
||||
Client Kind = "CLIENT"
|
||||
Server Kind = "SERVER"
|
||||
Producer Kind = "PRODUCER"
|
||||
Consumer Kind = "CONSUMER"
|
||||
)
|
Reference in New Issue
Block a user