This commit is contained in:
Asim Aslam
2020-01-18 10:20:46 +00:00
parent 13d1d2fa08
commit 058fd8adbf
3 changed files with 131 additions and 0 deletions

12
debug/trace/options.go Normal file
View File

@@ -0,0 +1,12 @@
package trace
type Options struct{}
type Option func(o *Options)
type ReadOptions struct {
// Trace id
Trace string
}
type ReadOption func(o *ReadOptions)