Files
Charon/backend/internal/notifications/http_client_executor.go
2026-03-04 18:34:49 +00:00

8 lines
159 B
Go

package notifications
import "net/http"
func executeNotifyRequest(client *http.Client, req *http.Request) (*http.Response, error) {
return client.Do(req)
}