8 lines
146 B
Go
8 lines
146 B
Go
package imparse
|
|
|
|
import "context"
|
|
|
|
type Trace interface {
|
|
StartSpanFromContext(ctx context.Context, funcName string) (func(), context.Context)
|
|
}
|