package server import ( "fmt" "net/http" ) func (s *Server) handleFragmentIntegrations(w http.ResponseWriter, r *http.Request) { w.Header().Set("Content-Type", "text/html") html := "" if s.cfg.IsSignalEnabled() { html += `
` } if s.cfg.IsProtonEnabled() { html += `
` } if s.cfg.IsTelegramEnabled() { html += `
` } _, _ = fmt.Fprint(w, html) }