mirror of
https://github.com/PrivateCaptcha/PrivateCaptcha.git
synced 2026-05-05 20:41:39 -05:00
16 lines
304 B
Go
16 lines
304 B
Go
//go:build !profile
|
|
|
|
package monitoring
|
|
|
|
import (
|
|
"context"
|
|
"log/slog"
|
|
"net/http"
|
|
|
|
"github.com/PrivateCaptcha/PrivateCaptcha/pkg/common"
|
|
)
|
|
|
|
func (s *Service) setupProfiling(ctx context.Context, mux *http.ServeMux) {
|
|
slog.Log(ctx, common.LevelTrace, "Profiling is not enabled during compile time")
|
|
}
|