mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-01 01:41:21 -05:00
10 lines
181 B
Go
10 lines
181 B
Go
package svc
|
|
|
|
// NewTracing returns a service that instruments traces.
|
|
func NewTracing(next Service) Service {
|
|
return Service{
|
|
manager: next.manager,
|
|
config: next.config,
|
|
}
|
|
}
|