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
14 lines
295 B
Go
14 lines
295 B
Go
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"
|
|
)
|