()
| 844 | } |
| 845 | |
| 846 | func echoHandler() http.HandlerFunc { |
| 847 | return func(w http.ResponseWriter, r *http.Request) { |
| 848 | http.Error(w, "echo", http.StatusOK) |
| 849 | } |
| 850 | } |
| 851 | |
| 852 | func usageStatsHandler(urCfg usagestats.Config) http.HandlerFunc { |
| 853 | if !urCfg.Enabled { |
no test coverage detected