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:
30
example-project/vendor/github.com/openzipkin/zipkin-go/model/span_id.go
generated
vendored
Normal file
30
example-project/vendor/github.com/openzipkin/zipkin-go/model/span_id.go
generated
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
package model
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
// ID type
|
||||
type ID uint64
|
||||
|
||||
// String outputs the 64-bit ID as hex string.
|
||||
func (i ID) String() string {
|
||||
return fmt.Sprintf("%016x", uint64(i))
|
||||
}
|
||||
|
||||
// MarshalJSON serializes an ID type (SpanID, ParentSpanID) to HEX.
|
||||
func (i ID) MarshalJSON() ([]byte, error) {
|
||||
return []byte(fmt.Sprintf("%q", i.String())), nil
|
||||
}
|
||||
|
||||
// UnmarshalJSON deserializes an ID type (SpanID, ParentSpanID) from HEX.
|
||||
func (i *ID) UnmarshalJSON(b []byte) (err error) {
|
||||
var id uint64
|
||||
if len(b) < 3 {
|
||||
return nil
|
||||
}
|
||||
id, err = strconv.ParseUint(string(b[1:len(b)-1]), 16, 64)
|
||||
*i = ID(id)
|
||||
return err
|
||||
}
|
Reference in New Issue
Block a user