mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-24 10:07:04 +02:00
13 lines
161 B
Go
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)
|