This commit is contained in:
2022-03-17 15:54:23 +08:00
commit 437c38533d
25 changed files with 6943 additions and 0 deletions

7
trace.go Normal file
View File

@@ -0,0 +1,7 @@
package imparse
import "context"
type Trace interface {
StartSpanFromContext(ctx context.Context, funcName string) (func(), context.Context)
}