1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-03-29 20:39:48 +02:00
go-micro/debug/trace/options.go
2020-01-18 10:20:46 +00:00

13 lines
161 B
Go

package trace
type Options struct{}
type Option func(o *Options)
type ReadOptions struct {
// Trace id
Trace string
}
type ReadOption func(o *ReadOptions)