mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-29 07:19:40 -05:00
9b4fae1704
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
package svc
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// NewTracing returns a service that instruments traces.
|
|
func NewTracing(next Service) Service {
|
|
return tracing{
|
|
next: next,
|
|
}
|
|
}
|
|
|
|
type tracing struct {
|
|
next Service
|
|
}
|
|
|
|
// ServeHTTP implements the Service interface.
|
|
func (t tracing) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
t.next.ServeHTTP(w, r)
|
|
}
|
|
|
|
// GetMe implements the Service interface.
|
|
func (t tracing) GetMe(w http.ResponseWriter, r *http.Request) {
|
|
t.next.GetMe(w, r)
|
|
}
|
|
|
|
// GetUsers implements the Service interface.
|
|
func (t tracing) GetUsers(w http.ResponseWriter, r *http.Request) {
|
|
t.next.GetUsers(w, r)
|
|
}
|
|
|
|
// GetUser implements the Service interface.
|
|
func (t tracing) GetUser(w http.ResponseWriter, r *http.Request) {
|
|
t.next.GetUser(w, r)
|
|
}
|
|
|
|
// PostUser implements the Service interface.
|
|
func (t tracing) PostUser(w http.ResponseWriter, r *http.Request) {
|
|
t.next.PostUser(w, r)
|
|
}
|
|
|
|
// DeleteUser implements the Service interface.
|
|
func (t tracing) DeleteUser(w http.ResponseWriter, r *http.Request) {
|
|
t.next.DeleteUser(w, r)
|
|
}
|
|
|
|
// PatchUser implements the Service interface.
|
|
func (t tracing) PatchUser(w http.ResponseWriter, r *http.Request) {
|
|
t.next.PatchUser(w, r)
|
|
}
|
|
|
|
// GetDrives implements the Service interface.
|
|
func (t tracing) GetDrives(w http.ResponseWriter, r *http.Request) {
|
|
t.next.GetDrives(w, r)
|
|
}
|