8 lines
159 B
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)
|
|
}
|