6 lines
240 B
Python
6 lines
240 B
Python
import requests
|
|
|
|
|
|
def send_notification(message: str):
|
|
response = requests.post('https://ntfy.ccalifice.com/ghostfolio', data=message, headers={"Authorization": "Bearer tk_dl5jaui6j3pc2dx9rx8qj9sdwh23k"})
|
|
return response.status_code |