Files
Charon/backend/internal/notifications/http_client_executor.go

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)
}